Recent content by chrysller

  1. C

    What could be the problem with this php code?

    <?php $con=mysql_connect("192.168.170.15","51636","51636"); if (!$con) { die("Could not connect:" .mysql_error()); } $dbname="db51636"; mysql_select_db($dbname,$con) or die (mysql_error()); $name=$_POST['fname']; $id=$_POST['staff_id']; $pay=$_POST['pay']; $query= ("INSERT INTO staff...
  2. C

    How can I edit a form field using php and saving the changes in the database?

    I have a form with data from a database. I want to add an 'edit' functionality so that I can edit the data and save the new data in the database. Hope that is sufficient.
  3. C

    Why does this tag \n not work in my php file?

    $a=12.30; $b=1.00; $c=234.55; printf("%5.2f.\n",$a);//\n not functional printf("%5.2f.\n",$b); printf("%5.2f.\n",$c); //The \n tag is supposed to funtion like a line break, but in this small example the numbers are //supposed to be aligned with the decimals. I hope this makes sense. Thank...
  4. C

    Where in India can I get spare parts for motorbikes?

    I need contacts as well. I need spare parts for Bajaj, TVS, CG125,CG150, CD110. Thank you.
Back
Top