Forum: PHP Dec 30th, 2008 |
| Replies: 13 Views: 708 hi there,
i think you need to make sure image is properly uploaded in to the folder. For this you can use
$result = move_uploaded_file($TempFileName, $FilePath);
if (!$result)
{... |
Forum: PHP Dec 30th, 2008 |
| Replies: 5 Views: 484 hi there,
this is dilip here,
i have seen that website but not able to figure out what he/she had done, because he/she uses large amount of javascript code in web page itself. Which is not a good... |
Forum: PHP Dec 29th, 2008 |
| Replies: 3 Views: 441 First you are in DaniWeb dont ever ask for any code. Ask your doubts.
Now for your problem
If you wanna user to choose a date then use following
Download DataTimePicker.js a javascript... |
Forum: PHP Dec 29th, 2008 |
| Replies: 4 Views: 461 hi, i think you have problem with primary key after postback it wont get primary key by which it will make updation , so use
<input type="hidden" name="pno" value="<?php echo $pno; ?>" />
and also... |
Forum: PHP Dec 29th, 2008 |
| Replies: 6 Views: 963 <form>
<table border="0" width="100%">
<tr>
<td align="right" width="60%"><select name="select" size="1" onChange='submit()'>
<option value='0'>Select Category</option>
<?... |
Forum: PHP Dec 29th, 2008 |
| Replies: 2 Views: 1,409 hi there,
you get error at this line becuase in mysql_fetch_array($result) function can takes only result variable which holds output generated by $result=mysql_query($qry);
hope you understand.... |