Forum: PHP Oct 17th, 2008 |
| Replies: 3 Views: 579 It's called mod_rewrite, which is an Apache module. It allows you to rewrite the requested urls.
You should read more about it here
http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html |
Forum: PHP Oct 3rd, 2008 |
| Replies: 6 Views: 719 It's not true that JSP is much more secured. It totally depends on the developer of the application.
My preference is PHP for web applications. As for desktop application, I prefer Java or... |
Forum: PHP Oct 2nd, 2008 |
| Replies: 9 Views: 714 $date = '2008-09-29';
$newDate = date('d-m-Y', strtotime($date)); |
Forum: PHP Sep 30th, 2008 |
| Replies: 3 Views: 4,912 Try using @ in front of function name.
@fopen
@fread
@fclose |
Forum: PHP Sep 13th, 2004 |
| Replies: 7 Views: 10,812 Post your code or
Try the following code.
<?php
$wave_file = generate_wavfile(); //This is the example one.
//Generate/Get wave file name without .wav extension format.
echo "<EMBED... |