Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. interface Application_Model_UnternehmensrolleConstantsInterface{
  3.         const KUNDE=1;
  4.         const AGENTUR=2;
  5.         const LIEFERANT=3;
  6.         const MEDIENPRODUKTION=4;
  7.         const GESCHAEFTSFUEHRUNG_BUCHFUEHRUNG=5;
  8.         const MARKETING=6;
  9.  
  10. }
  11. ?>
  12.  
  13. <?php
  14.  
  15. class foobar
  16. {
  17.   public function foobar($string){
  18.     //this string is 'AGENTUR'
  19.     mysql_select_row('id'=$string); // how do i map the AGENTUR to 2?
  20.   }
  21. }