[ create a new paste ] login | about

Link: http://codepad.org/06qupQQZ    [ raw code | output | fork ]

PHP, pasted on Oct 4:
1
2
3
4
5
<?php
   $id = '1';
   $sql = "INSERT INTO `photos` (`id`,`owner`,`url`) VALUES ('id','$id')";    
   echo $sql;
?>


Output:
1
INSERT INTO `photos` (`id`,`owner`,`url`) VALUES ('id','1')


Create a new paste based on this one


Comments: