nav-left cat-right
cat-right

PHP script to test mysql connection...

Here is a simple PHP script to test your mysql connection from webserver. You can download the script from here. ~mohammed

Domain redirection using PHP script...

If you want to redirect a domain to some other url, you can use the PHP script below. index.php —————————————- <?php header(”Location: http://destination-domain.com/where-you-want-to-redirect/index.html”); exit(); ?> —————————————- So, when you take...

A Sample PHP Script for uplaoding Files to a Serve...

Here is a PHP script that can be used to upload files to a server: <html> <body><form action=”upload_file.php” method=”post” enctype=”multipart/form-data”> <label for=”file”>Filename:</label> <input type=”file” name=”file” id=”file” /> <br /> <input type=”submit” name=”submit”...