Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.7K
~129 People Reached
Favorite Forums
Favorite Tags
php x 2
Member Avatar for jidesbey

Hello, I have build an html interface with a text area. I want a script that would let me search for text pasted there based on a database. how do I go about it

Member Avatar for diafol
0
46
Member Avatar for vizz

[CODE]<?php // Inbox // Display Messages // mail.host.com $host = "mail.com"; // username $username = "vizz"; $password = "vizz"; // make connection $inbox = @imap_open ("{". $host . "/pop3:110}",$username, $password) or header("Could not connect. Somethings wrong !"); $total = imap_num_msg($inbox); ?> <html> <head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <!--check all messages--> <script …

Member Avatar for kesav
0
83