Apply for Zend Framework Certification Training

Php Questions






$a = 6;
$b = 7;
$temp = $a;
$a = $b;
$b = $temp;
echo "Number a =".$a." and b=".$b."\n"
$a = 6;
$b = 7;
list($a, $b) = array($b, $a);
print $a . \',\' . $b;
$a = $a + $b;
$b = $a - $b;
$a = $a - $b;
print $a . \',\' . $b;

< How to create form in codeigniter How to create Form in Zend Framework 2 and Insert Data in Database >



Ask a question



  • Question:
    {{questionlistdata.blog_question_description}}
    • Answer:
      {{answer.blog_answer_description  }}
    Replay to Question


Back to Top