UK Webmaster Talk - Online Marketing - SEO


 

Search Engine Submitter

This is a discussion on Search Engine Submitter within the Php and MySQL forums, part of the Programming / Scripting / Coding category; i need help for my search script http://search.************.co.uk I need a submitter so people can submit there own site but ...


Go Back   UK Webmaster Talk - Online Marketing - SEO > Website Design & Development > Programming / Scripting / Coding > Php and MySQL

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Notices

Reply

 

LinkBack Thread Tools Display Modes
Old 13-07-2005, 20:20   #1 (permalink)
KF1
Guest
 
Posts: n/a
iTrader: / %
Default Search Engine Submitter

i need help for my search script
http://search.************.co.uk
I need a submitter so people can submit there own site but i dont know how to make one

Last edited by KF1; 03-08-2005 at 18:44.
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 20:40   #2 (permalink)
Ultimo Supremo
 
Join Date: May 2005
Location: /public_html/Cgi-bin/
Posts: 1,417
iTrader: 0 / 0%
Morphmaster is a glorious beacon of light
Send a message via MSN to Morphmaster
Default

Is that me or is that sphider?
__________________
Thanks
Tom

Have you ever thought what it's like, to be wanderers in the fourth dimension? Have you? To be exiles?
Morphmaster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 20:42   #3 (permalink)
KF1
Guest
 
Posts: n/a
iTrader: / %
Default

thats SPHINDER as im so stupid i carnt make my own one
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 20:44   #4 (permalink)
Ultimo Supremo
 
Join Date: May 2005
Location: /public_html/Cgi-bin/
Posts: 1,417
iTrader: 0 / 0%
Morphmaster is a glorious beacon of light
Send a message via MSN to Morphmaster
Default

Kf1 your NOT stupid.
your very talented
__________________
Thanks
Tom

Have you ever thought what it's like, to be wanderers in the fourth dimension? Have you? To be exiles?
Morphmaster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 20:47   #5 (permalink)
KF1
Guest
 
Posts: n/a
iTrader: / %
Default

in what way? i carnt make anything thats decent
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 20:52   #6 (permalink)
Ultimo Supremo
 
Join Date: May 2005
Location: /public_html/Cgi-bin/
Posts: 1,417
iTrader: 0 / 0%
Morphmaster is a glorious beacon of light
Send a message via MSN to Morphmaster
Default

So, i cant make a piece of toast hehe.

Right.

Just think about this, im gunna be sad but THINK.

-People in poverty, do you think they have ever heard of PHP?
Do you think people in poverty have websites?


Sorry, ive gone down the wrong root
this is a "Your lucky to have websites" thing not a your talented but u r
__________________
Thanks
Tom

Have you ever thought what it's like, to be wanderers in the fourth dimension? Have you? To be exiles?
Morphmaster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 20:56   #7 (permalink)
KF1
Guest
 
Posts: n/a
iTrader: / %
Default

Quote:
Originally Posted by Morphmaster
thing not a your talented but u r
I aint that talented
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 21:06   #8 (permalink)
Ultimo Supremo
 
Join Date: May 2005
Location: /public_html/Cgi-bin/
Posts: 1,417
iTrader: 0 / 0%
Morphmaster is a glorious beacon of light
Send a message via MSN to Morphmaster
Default

Then "That" telented should be your goal.
__________________
Thanks
Tom

Have you ever thought what it's like, to be wanderers in the fourth dimension? Have you? To be exiles?
Morphmaster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 21:12   #9 (permalink)
Senior Member
 
Join Date: Apr 2005
Posts: 1,088
iTrader: 0 / 0%
Departed is a name known to allDeparted is a name known to all
Default

Ultraseek code snip, just save as submit.php and link up

feel free to add to my rep

PHP Code:
 <?php

include("include/dbconn.php");
        
$conn mysql_connect($host,$user,$pass)
                or die (
"Couldn't connect to server");
        
$database mysql_select_db($db,$conn)
                or die (
"Couldn't connect to database");

$url $_POST["url"];
$title $_POST["title"];
$desc $_POST["desc"];

switch (@
$_GET['do'])

{
    case 
"submit":
    
    if (
$_POST['url'] == "")
        {
        unset(
$_GET['do']);
        
$message "Please enter your websites url";
        }
    elseif (
$_POST['title'] == "")
        {
        unset(
$_GET['do']);
        
$message "Please enter a title for your website";
        }
    elseif (
$_POST['desc'] == "")
        {
        unset(
$_GET['do']);
        
$message "Please enter a description of your website";
        }
    else
        {
        
$ok "yes";
        }

if (
$ok == "yes")
        {
        
$sql "INSERT INTO sites (url, title, short_desc)
                    VALUES ('$url', '$title', '$desc')"
;
        
mysql_query($sql)
            or die (
"Couldn't add to database");
        
$message "Thankyou for submitting your website to UltraSeek.us. It will be crawled in our next update.";
        }
    
    break;
    default:
            
}
?>

<html>
<head>
<title>Flubb.com :: The Flubb Search Engine :: Submit My Site</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
</head>

<body>
<form name="submission" method="post" action="/submit.php?do=submit">
<table width="738" border="0" cellspacing="1" cellpadding="2">
    <tr><td>URL:</td><td>http://<input type="text" name="url"></td></tr>
    <tr><td>Title:</td><td><input type="text" name="title"></td></tr>
    <tr><td>Description:</td><td><input type="text" name="desc"></td></tr>
    <tr><td>&nbsp;</td><td><input type="submit" value="Submit"></td></tr>
    <?php if (isset($message)) echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td colspan='2'>$message</td></tr>"?>
</table>
</form>
</body>
</html>
That will put it into the crawl list, use a cron job to do it automatically every xx mins.

Ty
__________________
-Gary
Departed is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 13-07-2005, 21:19   #10 (permalink)
KF1
Guest
 
Posts: n/a
iTrader: / %
Default

did you make that?
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
engine, search, submitter

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Crawler name of Search Engine seo expert Search Engine Optimisation (SEO) 12 03-11-2008 13:53
I'm having a problem with my search engine! ShaunBurden Php and MySQL 9 08-03-2007 16:38
Who wants a FREE search engine? Wistow Ads, Offers & Services 5 15-10-2005 22:50
IFoundIt.net - PR3 Search Engine Wistow Websites For Sale 0 21-07-2005 17:40
Would you use a new search engine? Wistow General Webmaster Discussion 9 03-04-2005 19:53


All times are GMT +1. The time now is 02:08.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
UK Webmaster Forum © WebmasterTalk.co.uk | Design by Forbairt

Ad Management by RedTyger

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41