Forum: JavaScript / DHTML / AJAX Jul 3rd, 2009 |
| Replies: 15 Views: 1,169 can i put php inside javascript? |
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2009 |
| Replies: 15 Views: 1,169 i tried using sessions..
i set a sessions variable to 1 if the form data was submitted.
i check if the the variable is one on the concerned page and if it is i call a function which disables the... |
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2009 |
| Replies: 15 Views: 1,169 saving it to a file using php..is that a scripting language? |
Forum: JavaScript / DHTML / AJAX Jul 1st, 2009 |
| Replies: 0 Views: 312 i embedded a video and played it using quicktime. it worked fine. but not many people use quicktime so i want to play it using flash but it just shows a white space and when i right click it shows... |
Forum: PHP Jun 30th, 2009 |
| Replies: 2 Views: 213 |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 15 Views: 1,169 |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 15 Views: 1,169 i have a form being filled. i don't want the user to be able to submit twice. how can i either prevent the user from going back or disable the submit button?
i am currently disabling the submit... |
Forum: PHP Jun 30th, 2009 |
| Replies: 2 Views: 213 i want to write data accepted in a form to a text file. this is the code i am using.
$file=fopen("data.txt","a+");
fwrite($file," whatever i want written");
fclose($file);
but nothing is... |
Forum: PHP Jun 17th, 2009 |
| Replies: 3 Views: 601 |
Forum: PHP Jun 17th, 2009 |
| Replies: 3 Views: 601 i got it...just had to add a return false to my onsubmit.
onsubmit="check();return false;"
i also added a return false after the alert() statement.. |
Forum: PHP Jun 17th, 2009 |
| Replies: 3 Views: 601 hello.
i have a page where if you don't select an option an alert message is displayed(i'm using javascript and php). when the user clicks 'ok' the parent page is refreshed. i don't want this(the... |