Posts tagged .html
HOW DO I ADD SEARCH ENGINE (HTML) TO MY WEBSITE THAT SEARCHES WITHIN MY WEBSITE?
Sep 25th
I need to have a search box in my webpage that search tags and related items inside my own website (all webpages and specifically in one page). I know how to add a search box, just need to figure out how to make it work so my website is connected?
Thanks
I am using dreamweaver
Read More >>
WHAT IS THE BEST WAY TO BUILD A WEBSITE WITHOUT KNOWING HTML?
Sep 10th
do i have to know html to use a program like front page. does front page automatically turn regular text into html? some web hosts offer building a site by just typing in the content without having to know html. will that content be able to be found by search engines even though it is not in html, even though i would submit it to search engines and directories. If i want to generate free traffic wouldnt any content that i submit have to be in html for search engines to find?
Read More >>
HOW DO I SETUP THE HTML INSIDE EMAILS SENT THROUGH PHP?
Sep 4th
I am currently working on a script that sends a new user an email requiring them to click an activation link to become fully registered. The script seems to work fine, but I am trying to perfect how the email itself works. I currently have the link inside the email that sends them to the activation.php?id=$lastid&code=$random …. When I click the link in the email, it just gives me the Page Load Error (firefox) and states “Firefox cannot find the server at (sitename)”.
I noticed if I stay on that page, and click up in the Address bar, and just push enter on the keyboard, it will send me to the activation and everything works perfectly.
In my code I had it set to something like Activate Now!
So I decided to just try adding in the www after ‘http://’
After I did, I tried the whole process again, but this time it redirects me to my default search engine, saying that this url does not exist.
I will post my code. Any help would be appreciated:
The following is is a portion of register.php:
$lastid = mysql_insert_id();
$to = $email;
$subject = “Activate your account!”;
$headers = “From: Me
$headers .= “Content-type: text/html\r\n”;
$server = “###.###########.net”;
ini_set(“SMTP”,$server);
$body = ”
Hello $fullname,
You need to activate your account with the link below:
http://www.mysite/testing/activate.php?id=$lastid&code=$random
Thanks,
-My Site
“;
// Function to send mail
mail($to, $subject, $body, $headers);
The following is the complete code for activate.php:
require(‘connect.php’);
$id = $_GET['id'];
$code = $_GET['code'];
if ($id&&$code)
{
$check = mysql_query(“SELECT * FROM users WHERE id=’$id’ AND random=’$code’”);
$checknum = mysql_num_rows($check);
if ($checknum==1)
{
// Run a query to activate the account
$acti = mysql_query(“UPDATE users SET activated=’1′ WHERE id=’$id’”);
die(“Your account is activated. You might now log in.”);
}
else
die(“Invalid id or activation code.”);
}
else
die(“Data missing!”);
Read More >>
HI FRIENDS CAN U GET ME THE CODING FOR SEARCH ENGINE FRONT END AS HTML AND BACK END AS MY SQL.?
Aug 3rd
coding for creating my own search engine such as google, yahoo etc..,
Front -end as Html
Back -end as my SQL
Please help on that.,
Read More >>
HTML OR SCRIPT QUESTION?
Jul 29th
Hi. You see on some websites that even though you click back it stays on the same page and does not let you to return to,say the search engine. I was wondering how you could achive this?
Cheers
is someone could give me step by step instructions on how to do it that would be great
Read More >>
WHAT IS THE HTML CODE OR ASP CODE TO WRITE A SEARCH ENGINE OR A SEARCH IN YOUR OWN WEBSITE?
Jul 21st
Read More >>
HOW CAN I CREATE A SEARCH ENGINE FOR MY HTML FILE?
Jun 3rd
it is not linked to the internet
Read More >>
HOW TO CREATE AN INTERNAL SEARCH ENGINE USING PHP AND HTML CODES ONLY?
May 7th

No database is to be created and thus SQL codes is not needed. We are granted to use php and html codes only.
The site is just full of information. I need search engine to search the site. Let’s say, user types in “a” and the search engine would search the whole site of information for the letter “a” then display the results out. Cannot use a text file also. Strictly php and html codes only.
Read More >>