Forum: PHP Nov 18th, 2008 |
| Replies: 4 Views: 1,183 You can grab the values from the global $_REQUEST array or $_POST array. The selected values are avaialble in the variable which has the same name as the form tag. e.g. the selected value for subject... |
Forum: PHP Nov 18th, 2008 |
| Replies: 5 Views: 716 I couldn't see any wrong in your code. |
Forum: PHP Nov 18th, 2008 |
| Replies: 2 Views: 290 After the form is posted all the form variables are available in the second page in the global array $_REQUEST[]. So when you want to keep the form variables in the first page then do this:
<input... |
Forum: PHP Nov 18th, 2008 |
| Replies: 5 Views: 445 |
Forum: PHP Nov 18th, 2008 |
| Replies: 13 Views: 2,708 Because you have set the primary key to be auto incremented so you don't need to pass anything here. |
Forum: PHP Nov 7th, 2008 |
| Replies: 2 Views: 407 Pass the result resource you get after executing the query in mysql_num_rows() and it'll give the total number of rwos fetched |
Forum: PHP Nov 7th, 2008 |
| Replies: 4 Views: 508 Or if you want to follow CSS to desig the grid which very popular then you can choose the CSS you want from this tutorial also-... |
Forum: PHP Nov 7th, 2008 |
| Replies: 2 Views: 4,176 Very simple, you can use either
<a href="..." target="_BLANK">...</a>
or use javascript function window.open() to open a new window having the link you specified |