Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #2K
~2K People Reached
Favorite Tags

6 Posted Topics

Member Avatar for kfirlankry

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 …

Member Avatar for kfirlankry
0
183
Member Avatar for bflack

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, …

Member Avatar for bflack
0
208
Member Avatar for calebcook

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. …

Member Avatar for oab2003
0
1K
Member Avatar for PinoyDev

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 …

Member Avatar for PinoyDev
0
320
Member Avatar for oab2003

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 …

Member Avatar for Ancient Dragon
0
180
Member Avatar for oab2005
Member Avatar for oab2003
0
67

The End.