| Recent Answers |
 |
 |
2009-01-05 PHP5 - check boxes for an fdf file: Greetings, Jason. I am not sure whether you mistyped in your question or in your actual script. $concerns=$_post['concerns']; foreach($concerns as $value){ $data['symptoms'][]=$concerns; }...
|
2009-01-01 PHP5 - Downloading pdf files :D: There are several ways to do this Salman. One way is to stream your files through your PHP script. In this method you would first place your files ABOVE your website document root (IE, /home/salman/files/file...
|
2008-12-26 PHP5 - How to save javascript variable in php variable??: This isn't my area of expertise, but off of the top of my head, I can think of several ways to do this. First of all, you could have javascript do an image load something like this: <img src="your_file...
|
2008-12-26 PHP5 - php: I can honestly say that I've never seen this problem before. What happens if you change your code to: <?php global $a; $num = $a; print $num; ?> Does it then show the value of $a? This is...
|
2008-12-14 Perl & CGI - Calling subroutine (PERL CGI question): Hello, > 1. how can I get the value of $pagename to change from > 'home' to 'preview' after edit() runs? Include a hidden field in your next form which contains the new name of the action....
|