- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
12 Posted Topics
PHP stands for Hypertext Preprocessor. Check out this site to gain more [URL removed]
This code will workk for sure in a Server. For making it work in your local syatem , you need to install a mail server with your web server software .
unexpected T_STRING error is due to the typing mistakes in program. Just check for the required spaces are there check proper symbols are there( $, ; , . ,")
title for the image should be with <img src="" title="" /> ... "Swich" statement execute only from server side ( in this case you can use only after the user click on that image ) ... For displaying title at the hover time , you can go for specifying title …
Hi , USe like this [code=php]<?php ob_start("ob_gzhandler"); @session_start(); ?> [/code] and [code=php] $_SESSION['pas'] =$pas; [/code] I think that will solve the issue ...
First store the $query results to an array using mysql_fetch_array() .. and just need to use the table field name for getting the data like $result['TEXT'] for getting the TEXT_r8c8 like values ... and just put that in a while loop while ( the selected query result in an array …
use [code=php]while($rows = mysql_fetch_array($result))[/code]
Have you tried like this.... [code=php]<form name="vid_form" method="post" enctype="multipart/form-data" action="<?php echo $PHP_SELF;?>">[/code]
Otherwise can echo with if else condition [code=php] if ($row['model']=="") { echo "N/A"; } else { echo $row['model']; } [/code]
Submit the form to a PHP script or the self page itself. And then use $_GET or $_POST to retrieve the values as per your method used in form ( get or post ). Then you can format the message using the retrieved values. for emailing simply use mail() function …
* is used in several puposes ... It can be used as arithmetic operator for multiplication like 5 * 5 . And its using as wildcard in mysql queries
These links also helpful for learning PHP [URL="http://www.w3schools.com/PHP"]http://www.w3schools.com/PHP[/URL] [URL="http://php.net"]http://php.net[/URL] [URL="http://www.phpmysqlbrain.com"]http://www.phpmysqlbrain.com[/URL]
The End.
syamsasi