Search results

  1. A

    Sony LCD 22BX350 vs LG LCD 22LK311, Which one is better?

    Sony LCD 22BX350 vs LG LCD 22LK311, Which one is better?
  2. A

    Php image arranging in grids?

    I want to arrange some pictures (from database) in a tabular form. example 1 2 3 4 5 6 7 8 9 Only 3 per row . How can i ? What is the PHP code for that ?
  3. A

    Php Error Message..Pls help?

    This is the code <?php $db=mysqli_connect('localhost', 'root', '', 'test'); $sql = "insert into users ('name', 'add') VALUES ('anand' , 'Greeshmam')"; if(!(mysqli_query($db, $sql))) { die('SQL ERROR: ' . mysqli_error ($db) . " - Query Was: {$sql}"); } ?> The error message is SQL ERROR: You...
  4. A

    Php error message.Pls Help?

    Im getting an error msg in php Parse error: parse error in E:\wamp\www\t\language.php on line 19 The code is:-(language.php) <?php $languages = array('en' => 'English', 'ml' => 'Malayalam'); if (isset($_GET['lang'])) { $lang = $_GET['lang']; setcookie('lang',$lang,time() +(3600*24*365)); }...
  5. A

    Php error message.Pls Help?

    Im getting an error msg in php Parse error: parse error in E:\wamp\www\t\language.php on line 19 The code is:-(language.php) <?php $languages = array('en' => 'English', 'ml' => 'Malayalam'); if (isset($_GET['lang'])) { $lang = $_GET['lang']; setcookie('lang',$lang,time() +(3600*24*365)); }...
Back
Top