- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
6 Posted Topics
Re: Create a new web page and name it contactform.php. Your contactform.php script should be like this: <?php if(isset($_POST['Fullname'])) && $_POST['Fullname'] !='') $fullname=$_POST['Fullname']; if(isset($_POST['Email'])) && $_POST['Email'] !='') $email=$_POST['Email']; if(isset($_POST['choose'])) && $_POST['choose'] !='') $subject=$_POST['choose']; if(isset($_POST['Text'])) && $_POST['Text'] !='') $message=$_POST['Text']; mail("receiver's email address",$subject, $message\r\n\r\n $fullname ,"From: $email"); ?> In the mail function, where … | |
Re: The following code will solve your problem provided your image uploading script 1. Retrieves the image name like xyz.jpg and store it in a specially created folder with a name like profile_picture. 2. Inserts the name of the image in column profpic of your userprofile table. In the img tag, … | |
Re: Yes it is possible. You retrieve all the tables in the database with mysql_list_tables($database)function where $database is the variable holing the database name.You then retrieve the actual table names with mysql_tablename() function and store them in an array. You then put the Select * from array name in a loop. … | |
Re: When you update your site by making changes to your meta tag keywords or description or the site content,it normally takes some time like 2 to 3 weeks or more before the changes are reflected by most search engines. It can even take more time to have your site in … | |
The code below was written using C++.NET framework. How will the code be completed to retrieve all the records from microsoft access 2003 table PROFILE and display them in a form? [CODE] private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) { ADODB::Recordset ^ rst=gcnew ADODB::Recordset; ADODB::Connection ^ conADO; Object ^ obj; String … | |
The End.