mexabet 49 Good Learner
FlashCreations commented: Thanks for the great links!! +1
mexabet 49 Good Learner

R0bb0b,

No offenses taken! Instead, we are working together to get a good working script for our fellow community member.

R0bb0b commented: indeed :) +2
mexabet 49 Good Learner

I didn't see any issue displaying your homepage in Firefox. If you're still experiencing the same problem, consider clearing your browser (Firefox) cache. That can be done by clicking Tools ---> Clear Private Data ---> Cache.

mexabet 49 Good Learner

If you already have an image like your company's logo which you want to use for favicon.ico, you can use an online favicon generator like Dynamicdrive Favicon generator to convert the file format from .gif, .jpg, .png or .bmp to favicn.ico file format. After the favicon has been generated, download it to your local computer and upload it to your server. NOTE: Your site's favicon file should be accessible by typing

http://www.yoursite.com/favicon.ico
mexabet 49 Good Learner

I modified your code and IE and Firefox result of the file preview is the same in both browsers. The modified code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TWO-COLUM absolute LAYOUT WITH absolute BOXES</title>
<style type="text/css">
<!--
#id0 {
	background-color: #dae9ff;
	width: 92.5%;
	height: 20.33%;
	margin: 1.33% auto 14.5%;
}

#id1 {
	background-color: #dae966;
	width: 20%;
	height: 66.67%;
}

#id2 {
	background-color: #dae960;
	width: 72%;
	height: 66.67%;
	float: right;
}
#id_wrap {
	width: 92.5%;
	margin-left: auto;
	margin-right: auto;
}
#outerwrapper {
	width: 96.5%;
	margin: 0px auto;
}
-->
</style>
</head>
<body>
<div id="outerwrapper">
<div id="id0">Header Section</div>
<div id="id_wrap">
  <div id="id2">Content for  id "id2" Goes Here</div>
  <div id="id1">Left Section</div>
</div>
</div>
</body>
</html>

I hope this helps.

mexabet 49 Good Learner

This is the link: CONTROL PANEL --> Edit Signature

mexabet 49 Good Learner

The one I know that provides the functionality and the flexibility you want is not open source. Take a look at Interspire Shopping Cart and view their demo, to see if it would serve your needs.

mexabet 49 Good Learner

I've been doing business with Interspire for two years now and their Shopping Cart is full-featured and easy to manage. If you can afford it, just go for it.

mexabet 49 Good Learner

Read this thread as it might give you a detailed idea of what you're trying to do: http://www.daniweb.com/forums/thread148350.html

mexabet 49 Good Learner

I think it would be better to move this thread to PHP Forum, in order to get more response from others.

mexabet 49 Good Learner

See if this helps. To use this script, you need to create a folder named uploads where the uploaded files would be stored.

<?php
$maxsize=28480; // Set the maximum upload size in bytes
if (!$_POST['submit']) {
    //print_r($_FILES);
	$error=" ";
	// This will cause the rest of the process to be skipped
	//and the upload form displays
}
if (!is_uploaded_file($_FILES['upload_file']['tmp_name']) AND
!isset($error)) {
    $error = "<b>You must upload a file!</b><br /><br />";
	unlink($_FILES['upload_file']['tmp_name']);
}
if ($_FILES['upload_file']['size'] > $maxsize AND !isset($error)) {
    $error = "<b>Error, file must be less than $maxsize bytes.</b><br /><br />";
	unlink($_FILES['upload_file']['tmp_name']);
}
if($_FILES['upload_file']['type'] != "image/gif" AND
$_FILES['upload_file']['type'] != "image/pjpeg" AND
$_FILES['upload_file']['type'] !="image/jpeg" AND !isset($error)) {
    $error = "<b>You may only upload .gif or .jpeg files.<b><br /><br />";
	unlink($_FILES['upload_file']['tmp_name']);
}
if (!isset($error)) {
    move_uploaded_file($_FILES['upload_file']['tmp_name'],
	                   "uploads/".$_FILES['upload_file']['name']);
	print "Thank you for your upload.";
	exit;
}
else
{
    echo ("$error");
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP File Upload Script</title>
</head>

<body>
<form action="<?php echo(htmlspecialchars($_SERVER['PHP_SELF']))?>" method="post"
enctype="multipart/form-data">
    Choose a file to upload:<br />
	<input type="file" name="upload_file" size="50" />
	<br />
	<input type="submit" name="submit" value="Submit" />
	<input type="reset" name="Reset" value="Reset" />
</form>
</body>
</html>

This bit of code moves the uploaded file from a temporary directory into the uploads directory:

move_uploaded_file($_FILES['upload_file']['tmp_name'],
	                   "uploads/".$_FILES['upload_file']['name']);

The MIME types included here are: .gif, .pjpeg and .jpeg but you may like to add more file formats.
This first line of the code defines the maximum file size:

$maxsize=28480; // Set the …
Shanti C commented: Good Work Friend!!!! +2
mexabet 49 Good Learner

I prefer PHP personally. It is open source and help can be found almost everywhere on the web.

mexabet 49 Good Learner

I use RoundCube and it's easy to use and has better features than Squirrel Mail.

mexabet 49 Good Learner

opsryushi and Shanti Chepuru have given you more accurate and straight-to-the-point answers than I did earlier. Listen to their advice and start with the basic HTML and Cascading Style Sheets (CSS). Prior knowledge of HTML will help you to understand PHP and other server side scripting languages more.

mexabet 49 Good Learner

Since I don't see your HTML file, I can only guess. Define the height of the main content DIV and every other thing inside it will fit in.

mexabet 49 Good Learner

Can you please explain very well what you need and what you want to achieve? Just make your point clearer.

mexabet 49 Good Learner

It is a better approach to start learning one first, and when you feel you're mastering it, move on to another one. It would be somewhat difficult to start learning all the languages at once.

Whichever one you prefer to start with, buying relevant books and reading Online tutorials would help a lot.

mexabet 49 Good Learner

To repeat a background image horizontally, your CSS style should look like this:

<style type="text/css">
<!--
#der {
	background: url(your_image_name.gif) repeat-x;
}
-->
</style>

and on the BODY of your HTML page where you want to place the DIV tag should be like the code below:

<div id="der">Content for  id "der" Goes Here</div>

To repeat a background image vertically, your CSS style should look like this:

<style type="text/css">
<!--
#der {
	background: url(your_image_name.gif) repeat-y;
}
-->
</style>

and on the BODY of your HTML page where you want to place the DIV tag should be like the code below:

<div id="der">Content for  id "der" Goes Here</div>

If you want to repeat a background image both horizontally and vertically, your CSS style should look like this:

<style type="text/css">
<!--
#der {
	background: url(your_image_name.gif) repeat;
}
-->
</style>

and on the BODY of your HTML page where you want to place the DIV tag should be like the code below:

<div id="der">Content for  id "der" Goes Here</div>

As you can see, the difference in these styles can only be noticed in the CSS files. Horizontal repeating shows as: repeat-x;, vertical repeating shows as: repeat-y; and repeating both ways shows simply as: repeat;

mexabet 49 Good Learner

It would be better for you to post your code here, so we can have a look and try to solve the issue. That's the best approach in Webmaster forums.

mexabet 49 Good Learner

Then, you may have to take a look at Omnistar Affiliate Software and see if it has what you're looking for. It is MAC compliant as well.

mexabet 49 Good Learner

You can visit http://sitebuilder.mexabet.com/template_gallery/ and click on any of the featured templates (images) and see how the code I posted here works.

mexabet 49 Good Learner

I normally use Javascript for iframes. Try this and see if it works:
Place this between the <head> </head> tags.

<script language="javascript" type="text/javascript">
<!--
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}
// -->
</script>

Then place the following code where the link pointing to your site is (You can adjust the length and width to suit you):

<div><a href="http://www.discoversuccess.com" onclick="NewWindow(this.href,'template_window','688','570','yes','center');return false" onfocus="this.blur()"><img src="http://www.discoversuccess.com/img_upload/featImg/quickbooks.jpg" border="0" /></a></div>

The above code works for me in both IE and Firefox.

mexabet 49 Good Learner

Try this and see if it works, but you may have to modify it to reflect your form fields:

$subject="Name: ".$name."
Email: ".$email."
Message: ".$message."
";
$subject = stripslashes($subject);
mail("sales@yoursite.com","Contact Form Submitted",$subject,"From: Test mail from php");
mexabet 49 Good Learner

I visited aoausa.com/ and clicked on Upcoming Events and it opened another web page within aoausa.com- aoausa.com/Upcoming_Events.htm[ in the same window. There was nothing like an iframe and neither did the link you gave us- Upcoming Events open discoversuccess.com.

Pal, you may have to consider modifying this thread you started, because it's somewhat misleading at the moment.

mexabet 49 Good Learner

I have the following script for my Guestbook and it works fine. But I came across a captcha script I would like to incorporate into the already existing Guestbook. I have attached the captcha files here.
Please, can anyone help me to readjust the Guestbook codes to accommodate the Captcha?

The Guestbook files are as follows:
global.inc.php:

<?php

function pt_register()
{
$num_args = func_num_args();
$vars = array();

if ($num_args >= 2) {
$method = strtoupper(func_get_arg(0));

if (($method != 'SESSION') && ($method != 'GET') && ($method != 'POST') && ($method != 'SERVER') && ($method != 'COOKIE') && ($method != 'ENV')) {
die('The first argument of pt_register must be one of the following: GET, POST, SESSION, SERVER, COOKIE, or ENV');
}

$varname = "HTTP_{$method}_VARS";
global ${$varname};

for ($i = 1; $i < $num_args; $i++) {
$parameter = func_get_arg($i);

if (isset(${$varname}[$parameter])) {
global $$parameter;
$$parameter = ${$varname}[$parameter];
}

}

} else {
die('You must specify at least two arguments');
}

}

?>

process.php:

<?php
echo "<title>Guestbook Processor</title>";
include("global.inc.php");
$errors=0;
$error="Error(s) occurred while processing your form input.<ul>";
pt_register('POST','Name');
pt_register('POST','Email');
pt_register('POST','WebSite');
pt_register('POST','Message');
$Message=preg_replace("/(\015\012)|(\015)|(\012)/","&nbsp;<br />", $Message);if($Name=="" || $Email=="" || $Message=="" ){
$errors=1;
$error.="<li>You did not enter one or more of the required fields. Please go back and try again.";
}
if(!eregi("^[a-z0-9]+([_\\.-][a-z0-9]+)*" ."@"."([a-z0-9]+([\.-][a-z0-9]+)*)+"."\\.[a-z]{2,}"."$",$Email)){
$error.="<li>Invalid email address entered";
$errors=1;
}
if($errors==1) echo $error;
else{
$where_form_is="http".($HTTP_SERVER_VARS["HTTPS"]=="on"?"s":"")."://".$SERVER_NAME.strrev(strstr(strrev($PHP_SELF),"/"));
$message="Name: ".$Name."
Email: ".$Email."
Web Site: ".$WebSite."
Message: ".$Message."
";
$message = stripslashes($message);
mail("test@mysite.org","A visitor signed the Guestbook",$message,"From: Guestbook Processor");
$make=fopen("data.dat","a");
$to_put="";
$to_put .= $Name."|".$Email."|".$WebSite."|".$Message."
";
fwrite($make,$to_put);
echo '<meta http-equiv="refresh" …
mexabet 49 Good Learner

Try to get many external high PR web pages to link to your site. That would really help a lot.

mexabet 49 Good Learner

Try this and see if it helps:

<?php
$headers = 'From: form@connect.com' . "\r\n" .
    'Reply-To: form@connect.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

You can also visit http://th2.php.net/function.mail to find out more information.

You supposed to have posted the full code of the script that was giving the error, so that the community wouldn't have to guess. Doing that would most likely bring more response.

mexabet 49 Good Learner

Very informative link. Thanks for bringing up the link, as it might help a lot of people to understand PR algorithm.

This is how google gives page rank on your site.

http://pr.efactory.de/e-pagerank-algorithm.shtml

mexabet 49 Good Learner

Here is what you may be looking for: http://www.mexabet.biz/Computers___Internet/Software/. The site is only one month old but has over 500 back links, including many PR4 sites.

Can you please provide me some website listing who exchange links and have "software outsourcing" and Offshore software Development" as keyword search.

mexabet 49 Good Learner

Start submitting your website to many quality web directories. Directory submission of links has proved to be the most effective means of acquiring a lot of back links. It is the number of quality back links you have that's going to affect your site's PR in the near future.

mexabet 49 Good Learner

It is quite tough to build a PR6 directory these days, but if you can amass back links from external high PR web pages, you can make it.

However, I think it is not a standard practice to start up a free directory just to collect enough links to convince others to submit and then turn it to a paid directory. You'd better choose to run a free or paid directory from onset and stick to it.

mexabet 49 Good Learner

I really don't know about any free ebook on PHP. But a lot can be learned from PHP official website- www.php.net. They have tons of manuals, documentations and examples. Books help a lot but php.net should be your reference point, to cross-check if the book you're reading is up to date or not.

mexabet 49 Good Learner

You can do redirection of your web pages from within the control of your web hosting account. I know cPanel has such function.

But if you don't want to go that route, this is a simple PHP code for URL redirection:

<?php
   ob_start();
   echo "Redirecting......";
   echo '<meta http-equiv="refresh" content="0;url=http://www.mydomain.com/" />';
   ob_flush();
?>

Copy and paste this code on every web page you'd like redirected to www.mydomain.com

For the other part, you have to change "url=http://www.mydomain.com/" to "url=www.mydomain.com/newpageE.html"

I hope this will help a bit.

mexabet 49 Good Learner

Yes, I knew your site is a Blog and I just provided a short-term solution. Well, I don't know of any WordPress plugin, as I haven't used it before. If you cannot find a suitable plugin, try to hire someone to develop a customized sitemap generator for you. And I believe it won't be costly.

While you're still looking for a long-term solution, you can be using this Online sitemap generator to update your site: http://www.xml-sitemaps.com/

mexabet 49 Good Learner

I saw errors in your sitemap. However, I generated another sitemap for you. I believe it is complete now. Just copy the code below:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
- <url>
  <loc>http://doctortwisted.com/</loc> 
  <priority>1.00</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/archives/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/about/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/sickweb/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/free-sex/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/free-porn/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/paid-sex/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/category/bizarreinsertions/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/category/celebritysexscenes/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/category/majorpervert/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/category/naughtyoffice/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/category/weirdsex/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/naughtyoffice/cream-in-that-coffee-madam/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/naughtyoffice/bikini-baristas-love-naughty-america/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/naughty-america/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/naughty-office/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/perverts-r-us/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/majorpervert/panty-thief-beheads-barbies-and-writes-sick-twisted-love-notes/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/adult-perverts/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/major-pervert/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/naughtyoffice/nut-job/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/majorpervert/ronny-ass-hammer/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/majorpervert/man-loses-82-sex-partners-in-niger/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/weird-sex-stories/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/naughtyoffice/beautiful-bouncing-bride/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/majorpervert/scotlands-finest/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>http://doctortwisted.com/tag/bizarre-insertions/</loc> 
  <priority>0.80</priority> 
  <changefreq>always</changefreq> 
  </url>
- <url>
  <loc>
       
mexabet 49 Good Learner

I do agree with peter_budo. I have really tried to disable saving the images on one of my sites before, but with no success. After my trial I asked myself the reason for displaying the images in the first place, if I didn't want people to be able to save them. Then I just let go and carried on with some more important things.

mexabet 49 Good Learner

I will refer you to http://en.wikipedia.org/wiki/Dynamic_web_page
and http://en.wikipedia.org/wiki/Static_web_page

Hi,
Can anyone tell me the difference between Static page and Dynamic pages.Pls help me...


Thanks and Regards,
Punitha Pary

mexabet 49 Good Learner

Yes, I have seen such script before but can't locate it right now. Have you searched Daniweb thoroughly?

mexabet 49 Good Learner

Try to reach out to other site owners in your niche and request link exchange with them. Their visitors might find what you offer interesting and vice versa. This is how link exchange will benefit you.

You can also write good articles that are related to your business and submit them to article directories. You can get a back link there by just writing a quality article.

As well, try to submit your website links to as many quality web directories as you possibly can. To me, this has proven to be more effective than asking others for link exchange.

The more links you get pointing to your website from external links, the more your site's link popularity with search engines grows as well. Search engines assume that your site site must be offering something good for other sites to link to it. That coupled with good site content will propel you to the top of search results.

mexabet 49 Good Learner

You may need to post the code that generated the error here. This will enable the community to have a clear knowledge of it and hence, help you as soon as possible. Without the code all we can do is just guess.

mexabet 49 Good Learner

You can insert a PageRank checking code on the web pages you want the PR to show. So, when those pages load on the browser, their PR will also show. There are many sites offering such code for free.

Alternatively, if you're using Firefox, you can install SEO Quake program, which automatically shows the PR of any web page that is loaded on the browser. You may want to visit the site here to see if it might help you: http://ff.seoquake.com/. Firefox even offers it as a plugin.

Is there a way I can my site pages' PR without using a google toolbar? I prefer to not install their toolbar on my browsers

mexabet 49 Good Learner

aamir098,

I literally hope both of you will settle this issue amicably as brothers and move on.

hello mexabet

Answer of Your Question Is that I post here only Because I dont know eactly that to how many people he sold that script

and if anybody buy that script read this post again then he stoped it

mexabet 49 Good Learner

Hi hassanahmad,

I think this kind of quarreling over copyright ownership with that guy is not good for business. However, such things happen. But don't let it get out of control. If actually you're his employee, why didn't he restrain you, instead of reporting you to us here. He should realize we don't know the actual truth and more importantly, we don't have power over you.

If what you told us is the truth, go ahead and sell your stuff. But if you're actually his employee and the script in question is his company's legitimate project, then give it a second thought.

I will reiterate here that the script is awesome and I love it. Keep it up!

Hi peter,

Yes i sold that script to him but can you check if there is indeed any company called aazee,inc in pakistan [:)].. I am not an employee and i never sold that exclusively to him. So is he the owner or me, when we never made an agreement that i will not sell that script again?

Thanks,
Hassan Ahmad.

mexabet 49 Good Learner

Try to submit your site's links to as many directories as you possible can. When you have many back links pointing to your site, search engine crawlers will find your links in those directories and know for sure that your site exists. There are many sites on the Web that have large compilations (lists) of directories. Search and you will sure find. You can as well submit your link to Mexabet Web Directory.

mexabet 49 Good Learner

My recommendation is: create individual pages for those states and don't duplicate your homepage, as search engines frown at such practice. You stand losing the ranking of your homepage, if you duplicate its content. Make sure you add every targeted state in the Meta keywords and Meta descriptions of it's personalized page. E.g.: newyork.php will have personalized Meta descriptions as "New York financial investment company". So, when someone searches for "New York investment company", newyork.php will be served by the search engine. Use keyword variations that are similar, but not exactly the same.

We have a financial site that scores on Google page 1 for most terms. We want to specifically target several states (due to licensing reasons), and hopefully improve our ranking when the user uses a state as a search term.

My thought is to copy my home page and then personalize it for several states and link it back to my home page. Will this in any way jeopardize the ranking of my home page? Also, any recommendation for local state/city/town rankings would be welcome. Thanks.

mexabet 49 Good Learner

I have tried some PHP redirection methods and they all were giving me this error message: Warning: Cannot modify header information - headers already sent by.... on line...
Then I tried this and it works fine. You can even customize it to the number of seconds it takes before redirection occurs.

<?php
   ob_start();
   echo '<meta http-equiv="refresh" content="1;http://www.yourdomain.com/" />';
   ob_flush();
?>

The number "1" before the URL denotes the delay time before redirection.

mexabet 49 Good Learner

Inquire more at godaddy.com

mexabet 49 Good Learner

I have this script and it works fine but Google is complaining that the dynamically-generated URLs have duplicate title tags and duplicate meta descriptions- having inherited that from /cmp/index.php.
A few examples of the pages are as follows:

/cmp/index.php
/cmp/index.php?start_time=12.00+am&start_tz=Africa/Abidjan&end_tz=Africa/Abidjan
‎/cmp/index.php?start_time=12.00+am&start_tz=Africa/Abidjan&end_tz=Africa/Accra
/cmp/index.php?start_time=12.00+am&start_tz=Africa/Abidjan&end_tz=Africa/Algiers

The following is the section of the code causing the duplicating issue:

// Check to see if the form has been submitted
if ($_GET["start_time"] != NULL){
    $start_time_input = htmlentities($_GET["start_time"]);
	$start_tz = $_GET["start_tz"];
	$end_tz = $_GET["end_tz"];
	putenv("TZ=$start_tz");
	$start_time = strtotime($start_time_input);
	echo "<p><strong>";
	echo date("h:i:sA",$start_time)."\n";
	echo "</strong>";
	putenv("TZ=$end_tz");
	
	echo "in $start_tz becomes ";
	echo "<strong> ";
	echo date("h:i:sA",$start_time)."\n";
	echo "</strong>";
	echo " in $end_tz.</p><hr />";

This is how the script prints out the query result:
12:00:00AM in America/Los_Angeles becomes 03:00:00AM in America/New_York.

My question now is how do I use this dynamically-generated results as the titles of the generated URLs? And how do I assign META Keywords and META Descriptions to each URL?
Finally how do I assign SEO friendly URLs through MOD rewrite?

mexabet 49 Good Learner

On-site optimization plays a big role in bringing traffic to your site. Check all the likely words and phrases people searching for what you sell might be using in search engines, and then include them in the META Keywords and META Descriptions of your related pages. Exchange links with other related but non-competitive sites, whose visitors might be interested in what you sell.

mexabet 49 Good Learner

Since you didn't explain in details, I can only guess. If structuring the three text fields with a table is your need, see if this modification helps:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<div id="myDiv" style="display: none">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="4">
    <tr>
      <td>Text 1</td>
      <td><input type="text" name="textfield" /></td>
    </tr>
    <tr>
      <td>Text 2</td>
      <td><input type="text" name="textfield2" /></td>
    </tr>
    <tr>
      <td>Text 3</td>
      <td><input type="text" name="textfield3" /></td>
    </tr>
  </table>
</div>
<a href="#" onclick="if(document.getElementById('myDiv').style.display=='block'){ document.getElementById('myDiv').style.display='hidden'; } else{ document.getElementById('myDiv').style.display='block';}">Show</a>
</body>
</html>
sreein1986 commented: good job +1