Comment Form / Post Feedback Tutorial

Allow users to display and post comments on a page

Comment Form / Feedback Script Background

Feedback is very valuable to not only the web designers, but to other visitors as well. That was why I designed a simple comment form script for my site. I have had multiple requests for a tutorial on this, so I decided to write one. This is a fairly advanced tutorial, and I don't go into a lot of detail to explain my script. Now on to the tutorial...

Database: Create MySQL table

All the data from the comments form is stored in a MySQL database. If you do not have a database created, create one now. Now use the following MySQL command to create a new table to store the information:

CREATE TABLE `comments` (
  `commentid` int(11) NOT NULL auto_increment,
  `tutorialid` int(11) NOT NULL default '0',
  `name` text NOT NULL,
  `url` text NOT NULL,
  `comment` text NOT NULL,
  `email` text NOT NULL,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`commentid`),
  KEY `tutorialid` (`tutorialid`)
)

The script

1. Create a new php file, and name it "inc_rate.php". This file will store 5 functions: a date parsing script, a database connection function, a bbcode function, a function to display existing comments, and another to create an add comments form. Now add the following code to that page. You will need to input your database information at the top of the page. Explanations for the code are included as comments (in blue).




<?php
//Please set the following variables for your MySQL database:
//Please set the following variables for your MySQL database:
//it is highly recommended that you restrict access for the user for security reasons
//it only needs "INSERT" privileges

$db_hostname = "localhost";  //usually "localhost be default"
$db_username = "";  //your user name
$db_pass = "";  //the password for your user
$db_name = "";  //the name of the database


/*MYSQL DATABASE CONNECTION/ TRACKING FUNCTIONS
--------------------------------------*/
// connect to database
$dbh = mysql_connect ($db_hostname, $db_username, $db_pass) or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ($db_name);



//for security, html is not allowed, so bbcode is used for formatting

//START 3rd PARTY CODE:  I did not write this
/************************************************/
/*              BBCode v1.0a                    */
/*              Date: 03/2003                   */
/*                                              */
/*      A simple and effective script that      */
/*      allows you to implement bbcode type     */
/*      behaviour on your php website.          */
/*                                              */
/*      Contact: bbcode@netgem.freeserve.co.uk  */
/*                                              */
/*      Usage:                                  */
/*                                              */
/*      Put the following line at the top of    */
/*      the page you want to have the bbocde    */
/*      in...(assumes both pages are in the     */
/*      folder                                  */
/*                                              */
/*      include("bbCode.php");                  */
/*                                              */
/*      Pass the text to the function:          */
/*                                              */
/*      $mytext = BBCode("This is my BBCODE");  */
/*      or                                      */
/*      $mytext = "This is my text";            */
/*      $mytext = BBCode($mytext);              */
/*                                              */
/*      echo $mytext;                           */
/*                                              */
/************************************************/
?>
<style type="text/css">
<!--
body    {
        font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.bold {
        font-weight: bold;
}

.italics {
        font-style: italic;
}

.underline {
        text-decoration: underline;
}

.strikethrough {
        text-decoration: line-through;
}

.overline {
        text-decoration: overline;
}

.sized {
        text-size:
}

.quotecodeheader {
        font-family: Verdana, arial, helvetica, sans-serif;
        font-size: 12px;
        font-weight: bold;
}

.codebody {
        background-color: #FFFFFF;
    font-family: Courier new, courier, mono;
    font-size: 12px;
    color: #006600;
    border: 1px solid #BFBFBF;
}

.quotebody {
        background-color: #FFFFFF;
    font-family: Courier new, courier, mono;
    font-size: 12px;
    color: #660002;
        border: 1px solid #BFBFBF;
}

.listbullet {
        list-style-type: disc;
        list-style-position: inside;
}

.listdecimal {
        list-style-type: decimal;
        list-style-position: inside;
}

.listlowerroman {
        list-style-type: lower-roman;
        list-style-position: inside;
}

.listupperroman {
        list-style-type: upper-roman;
        list-style-position: inside;
}

.listloweralpha {
        list-style-type: lower-alpha;
        list-style-position: inside;
}

.listupperalpha {
        list-style-type: upper-alpha;
        list-style-position: inside;
}
-->
</style>

<?php
        //Local copy

        function BBCode($Text)
            {
                // Replace any html brackets with HTML Entities to prevent executing HTML or script
            // Don't use strip_tags here because it breaks [url] search by replacing & with amp
            $Text = str_replace("<", "&lt;", $Text);
            $Text = str_replace(">", "&gt;", $Text);



            // Set up the parameters for a URL search string
            $URLSearchString = " a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'";
            // Set up the parameters for a MAIL search string
            $MAILSearchString = $URLSearchString . " a-zA-Z0-9\.@";

                        //Non BB URL Search
                        //$Text = eregi_replace("([[:alnum:]]+)://([^[:space:]]*)([[:alnum:]#?/&=])", "<a href=\"\\1://\\2\\3\" target=\"_blank\" target=\"_new\">\\1://\\2\\3</a>", $Text);
                //$Text = eregi_replace("(([a-z0-9_]|\\-|\\.)+@([^[:space:]]*)([[:alnum:]-]))", "<a href=\"mailto:\\1\" target=\"_new\">\\1</a>", $Text);
                if (substr($Text,0, 7) == "http://"){
            $Text = eregi_replace("([[:alnum:]]+)://([^[:space:]]*)([[:alnum:]#?/&=])", "<a href=\"\\1://\\2\\3\">\\1://\\2\\3</a>", $Text);
                 // Convert new line chars to html <br /> tags
            $Text = nl2br($Text);
                        } else {
            // Perform URL Search
            $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="javascript:go(\'$1\',\'new\')">$1</a>', $Text);
            $Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="javascript:go(\'$1\',\'new\')">$2</a>', $Text);
                        //$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
                         // Convert new line chars to html <br /> tags
            $Text = nl2br($Text);
                        }
            // Perform MAIL Search
            $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
            $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.+?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);

            // Check for bold text
            $Text = preg_replace("(\[b\](.+?)\[\/b])is",'<span class="bold">$1</span>',$Text);

            // Check for Italics text
            $Text = preg_replace("(\[i\](.+?)\[\/i\])is",'<span class="italics">$1</span>',$Text);

            // Check for Underline text
            $Text = preg_replace("(\[u\](.+?)\[\/u\])is",'<span class="underline">$1</span>',$Text);

            // Check for strike-through text
            $Text = preg_replace("(\[s\](.+?)\[\/s\])is",'<span class="strikethrough">$1</span>',$Text);

            // Check for over-line text
            $Text = preg_replace("(\[o\](.+?)\[\/o\])is",'<span class="overline">$1</span>',$Text);

            // Check for colored text
            $Text = preg_replace("(\[color=(.+?)\](.+?)\[\/color\])is","<span style=\"color: $1\">$2</span>",$Text);

            // Check for sized text
            $Text = preg_replace("(\[size=(.+?)\](.+?)\[\/size\])is","<span style=\"font-size: $1px\">$2</span>",$Text);

            // Check for list text
            $Text = preg_replace("/\[list\](.+?)\[\/list\]/is", '<ul class="listbullet">$1</ul>' ,$Text);
            $Text = preg_replace("/\[list=1\](.+?)\[\/list\]/is", '<ul class="listdecimal">$1</ul>' ,$Text);
            $Text = preg_replace("/\[list=i\](.+?)\[\/list\]/s", '<ul class="listlowerroman">$1</ul>' ,$Text);
            $Text = preg_replace("/\[list=I\](.+?)\[\/list\]/s", '<ul class="listupperroman">$1</ul>' ,$Text);
            $Text = preg_replace("/\[list=a\](.+?)\[\/list\]/s", '<ul class="listloweralpha">$1</ul>' ,$Text);
            $Text = preg_replace("/\[list=A\](.+?)\[\/list\]/s", '<ul class="listupperalpha">$1</ul>' ,$Text);
            $Text = str_replace("[*]", "<li>", $Text);

            // Check for font change text
            $Text = preg_replace("(\[font=(.+?)\](.+?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);

            // Declare the format for [code] layout
            $CodeLayout = '<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
                                <tr>
                                    <td class="quotecodeheader"> Code:</td>
                                </tr>
                                <tr>
                                    <td class="codebody">$1</td>
                                </tr>
                           </table>';
            // Check for [code] text
            $Text = preg_replace("/\[code\](.+?)\[\/code\]/is","$CodeLayout", $Text);

            // Declare the format for [quote] layout
            $QuoteLayout = '<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
                                <tr>
                                    <td class="quotecodeheader"> Quote:</td>
                                </tr>
                                <tr>
                                    <td class="quotebody">$1</td>
                                </tr>
                           </table>';

            // Check for [code] text
            $Text = preg_replace("/\[quote\](.+?)\[\/quote\]/is","$QuoteLayout", $Text);

            // Images
            // [img]pathtoimage[/img]
            $Text = preg_replace("/\[img\](.+?)\[\/img\]/", '<img src="$1">', $Text);

            // [img=widthxheight]image source[/img]
            $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.+?)\[\/img\]/", '<img src="$3" height="$2" width="$1">', $Text);

                return $Text;
                }


//END 3rd PARTY CODE

//quick script to make the data look nice
function formatDate($val)
  {
      list($date, $time) = explode(" ", $val);
      list($year, $month, $day) = explode("-", $date);
      list($hour, $minute, $second) = explode (":", $time);
      return date("l, m.j.y @ H:ia", mktime($hour, $minute, $second, $month, $day, $year));
  }



function getComments($tutid){
//creates a function that can easily be called from any page

//create the css code to make the form look good.  You can edit this to change colors, etc:
echo "
<style>
/*COMMENTS
*------------------------------------*/

.postedby {
        padding: 0 0 0 18px;
        background: url(images/abullet.gif) no-repeat 0 4px;
        }
        
h3.formtitle {
        margin : 0px 0px 0px 0px;
        border-bottom: 1px dotted #ccc;
        padding-bottom: 8px;
        }

.commentbody {
        border-top: 1px dotted #ccc;
        }
        
/*gray box*/
.submitcomment, #submitcomment, #currentcomments, #rating, .textad {
        background-color: #F5F5F5;
        border: 1px dotted #ccc;
        padding: 5px;
        padding: 5px;
        margin: 20px 0px 0px 0px;
        }


/*FORMS
*------------------------------------*/

.form {
        background-color: #FAFAFA;
        border: solid 1px #C6C6C6;
        padding: 2px;
        }

.formtext {
        background-color: #FAFAFA;
        border: solid 1px #C6C6C6;
        padding: 2px;
        border-bottom: 1px dotted #ccc
        }

.form:hover, .formtext:hover {
        background: white;
        }
        
.form:focus, .formtext:focus {
        background: white;
        border: solid 1px #000000;
        }
        
.submit {
        background-color: #D3D3D3;
        border: solid 1px #C6C6C6;
        border-right:  solid 1px #9A9A9A;
        border-bottom:  solid 1px #9A9A9A;
        }
        
.submit:hover, .submit:focus {
        background: #EDEDED;
        }
        </style>

        
        ";
//fetch all comments from database where the tutorial number is the one you are asking for
        $commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date") or die(mysql_error());
//find the number of comments
        $commentNum = mysql_num_rows($commentquery);
//create a headline
        echo "<div id=\"currentcomments\" class=\"submitcomment\"><h3 class=\"formtitle\">Current Comments</h3>\n";
        echo $commentNum . " comments so far (<a href=\"#post\">post your own</a>)\n";
//for each comment in the database in the right category number...
        while($commentrow = mysql_fetch_row($commentquery)){
//for security, parse through the bbcode script
//the number corresponds to the column (the message is always stored in column 4
//COUTING STARTS at 0!!!
        $commentbb = BBCode($commentrow[4]);
//create the right date format
                $commentDate = formatDate($commentrow[6]);

                echo "<div class=\"commentbody\" id=\"$commentrow[0]\">\n
                <p>$commentbb</p>\n
                <p class=\"postedby\">Posted by ";
                if($commentrow[3]){
                echo "<a href=\"$commentrow[3]\">$commentrow[2]</a> ";
                } else {
                echo "$commentrow[2] ";
                }
                echo "on $commentDate | #$commentrow[0]</p>\n
                \n</div>";

        }
        echo "</div>";
}

function submitComments($tutid2,$tuturl){
//a javascript script to make sure all the required fields are filled in
?>
<script language="javascript">

function form_Validator(form)
{

  if (form.name.value == "")
  {
    alert("Please enter your name.");
    form.name.focus();
        return (false);
     }

  if (form.message.value == "")
  {
    alert("Please enter your message.");
    form.message.focus();
    return (false);
  }
  
  return (true);
  }
  //-->
  </script>
<?php
//create the form to submit comments
//you can add more fields, but make sure you add them to the db table and the page, submitcomment.php
        echo "
<a name=\"post\">
<div id=\"submitcomment\" class=\"submitcomment\">
<form name=\"submitcomment\" method=\"post\" action=\"submitcomment.php\" onSubmit=\" return form_Validator(this)\">
<table width=\"100%\">
                <tr>
                                <th colspan=\"2\"><h3 class=\"formtitle\">Leave your comment:</h3></th>
                </tr>
                <tr>

                                <th scope=\"row\"><p class=\"req\">Name:</p></th>
                                <td><input class=\"form\" tabindex=\"1\" id=\"name\" name=\"name\" /></td>
                </tr>
                <tr>
                                <th scope=\"row\"><p class=\"opt\">Email:</p></th>
                                <td><input class=\"form\" tabindex=\"2\" id=\"email\" name=\"email\" /></td>
                </tr>
                <tr>

                                <th scope=\"row\"><p class=\"opt\">URL:</p></th>
                                <td><input class=\"form\" tabindex=\"3\" id=\"url\" name=\"url\" /></td>
                </tr>
                <tr valign=\"top\">
                                <th scope=\"row\"><p class=\"req\">Comments:</p><br /></th>
                                <td><textarea class=\"formtext\" tabindex=\"4\" id=\"message\" name=\"message\" rows=\"10\" cols=\"50\"></textarea></td>
                </tr>

                <tr>    
                                <td>&nbsp;</td>
                                <td><input type=\"submit\" name=\"post\" class=\"submit\" value=\"Submit Comment\" /><br />
                                <p>Note:  Emails will not be visible or used in any way, and are not required.  Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted. </p>

<p>No HTML code is allowed.  Line breaks will be converted automatically.  URLs will be auto-linked.  Please use BBCode to format your text.</p>

</td>
                </tr>
</table>
<input type=\"hidden\" name=\"tuturl\" value=\"$tuturl\" />
<input type=\"hidden\" name=\"tutid2\" value=\"$tutid2\" />
</form>


</div>
";
}
?>




2. Create another php file, and call it "submitcomment.php". This page will handle for form input and submit it to the database. Add the following code to that page. You will need to input your database information at the top of the page.


<?php
//Please set the following variables for your mysql database:
$db_hostname = "localhost";  //usually "localhost be default"
$db_username = "";  //your user name
$db_pass = "";  //the password for your user
$db_name = "";  //the name of the database


/*MYSQL DATABASE CONNECTION/ TRACKING FUNCTIONS
--------------------------------------*/
// connect to database
$dbh = mysql_connect ($db_hostname, $db_username, $db_pass) or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ($db_name);


$tuturl = $_POST["tuturl"];
$tutid2 = $_POST["tutid2"];
$name = $_POST["name"];
$url = $_POST["url"];
$email = $_POST["email"];
$message = $_POST["message"];

$sendcomment = mysql_query("INSERT INTO comments SET tutorialid='$tutid2', name='$name', url='$url', email='$email', comment='$message', date=now()");
if($sendcomment){
//header("Location: $tuturl");
echo "<h1>Submission Successful</h1>";
echo "Your comment has been submitted.  You will now be redirected back to the last page you visited.  Thanks!";
echo "<meta http-equiv='refresh' content='2;URL=$tuturl'>";
} else {
echo "There was an error with the submission. ";
}

?>


	

Finishing touches: Add to a page

Now we will add the submit comment form and display any exhisting comments to a page. Add the following code to your page where you want the comments to be displayed. Make sure the page is a php file.:

<?php
require('inc_rate.php');
getComments("1");
submitComments("1","$PHP_SELF");
?>

Replace "1" with a unique number for the page. For example, for this page, I use "22".

Tweaks

To order the list by newest posts first, find the line:

$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date") or die(mysql_error());
And replace it with:
$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date DESC") or die(mysql_error());

Final Code

If you are having any trouble, try downloading the script and tweaking it for your site. Here is all the final pages in a zip file:

commentscript.zip : 5 files

Hope this tutorial was useful. It is a fairly simple script, so adding fields, etc. should be easy. Have a great day!

Brian Zimmer is a graphics and web designer with over 4 years of experience in Paint Shop Pro, HTML, CSS, Javascript, SEO, PHP, and MySQL. His services include professional and affordable freelance web and graphic design. He is the webmaster of http://www.zimmertech.com, and you can contact him through email at brian@zimmertech.com.

Back to Top

Click here to return to ZimmerTech, or click here to view other tutorials.

Rate this Tutorial

Rate this Tutorial:

Current Rating:

1 out of 51.03/ 5.00 with 748 votes.

Current Comments

1027 comments so far (post your own)

hi

Posted by lala on Thursday, 10.21.04 @ 06:34pm | #201

Nice tutorial!

Posted by Venom on Friday, 11.5.04 @ 10:39am | #207

Nice script!

I only miss one thing: the ability to use buttons to insert the BBcode...

Cheerz!

Posted by Freddy on Friday, 11.5.04 @ 01:55pm | #208

Testing

Posted by Testing on Friday, 11.5.04 @ 10:10pm | #209

great tutorial! a couple whishes:

1) I know it must be easy but i can't figure out how to manipulate the text font and size for the form. no matter what i tweak, "name, Email, & URL" look the same. any help on this?

2) any info on how to sort the entries by another field value? i want my form to be an event list. i would like to add a field for the event date and sort entries by that date...

thanks for the script.

Posted by ck on Wednesday, 11.24.04 @ 07:14pm | #226

The font size was in the CSS file. I changed the script to remove that line. It looks fine in Firefox, but I didn't realize it looked horrible in IE. For reference, you can remove the changed font size by removing the line "font-size: 70%;" in inc_rate.

To sort by another field value, at the end of the MySQL query where it ways "ORDER BY date", and change it to the new column that you created.

Posted by Brian Zimmer (http://www.zimmertech.com)on Wednesday, 11.24.04 @ 10:20pm | #227

Nice system :) great work. Very easy to use. Thank you!

Posted by DD on Sunday, 12.12.04 @ 11:24pm | #243

How do I create Database? thank you

Posted by John (don't have one)on Thursday, 12.16.04 @ 09:03pm | #248

Ok ,but I have that same comments in every page on my website. I want to create differend comments on every page...

Sorry for my english :/

Posted by mono on Saturday, 12.18.04 @ 09:56am | #249

If you want to have different comments on each page, change the number when you call the function. For example, on one page paste in:

<?php
require('inc_rate.php');
getComments("1");
submitComments("1","$PHP_SELF");
>

And for your next page, paste in:

<?php
require('inc_rate.php');
getComments("2");
submitComments("2","$PHP_SELF");
>

And so on.

Posted by Brian Zimmer on Wednesday, 12.22.04 @ 07:55pm | #250

cool!

Posted by cory on Thursday, 02.10.05 @ 12:19am | #351

Hi Nice Script..

Posted by Sathiyan (www.hashprompt.com)on Thursday, 02.10.05 @ 05:47am | #352

Excellent script. While testing it I posted some comments which I now want to remove. Any way to do this?

Posted by Michael on Monday, 02.21.05 @ 05:27pm | #362

To edit or remove comments, you have to edit the database. I use phpMyAdmin, which is installed on my server.

Posted by Brian Zimmer (http://www.zimmertech.com/)on Monday, 02.21.05 @ 05:43pm | #363

basically, I want to display in groups of 10. How do I do this? Do I have to manually create a new page every time it hits 10 or is there a way for it to automatically create a page such hat when I hit 11 comments, the first one automatically goes to the 2nd page and so on (and when it hits 21, the 1st comment goes to 3rd page, next ten on 2nd page, last 10 on first page, etc). Also, once I do that, how would I call each page?

Posted by Chau (phaseiipangroove.com)on Wednesday, 02.23.05 @ 06:24am | #368

I would like to write a script that reads through the comments searching for obscene words and replacing them with an appropriate word or asterixes. Can I do this? If so, how? Thank you again.

Posted by Chau (www.phaseiipangroove.com)on Thursday, 02.24.05 @ 07:08am | #370

Only testing

Posted by Jorge (www.watanabe.jor.br)on Saturday, 02.26.05 @ 09:44pm | #374

Hello, I have a website that I display my artwork on, and I've been looking for some kind of script that will let my friends and anyone who looks at my page leave a comment on a picture. This is the first script I have found that leaves the comment on the page, but I don't think my host supports PHP... is there a simpler way of just having a few text fields and a text box to allow comments to be left? Thank you!

Posted by Laura (http://www.freewebs.com/vanillapaint/)on Tuesday, 03.1.05 @ 10:06pm | #376

Hello, a have problem with this script

"Table 'gtdesign_uk_db.comments' doesn't exist "

help please

Posted by gtdesign on Sunday, 03.6.05 @ 12:48pm | #382

This means that the table in your database doesn't exhist. Run the following SQL command for your database:

CREATE TABLE `comments` (
`commentid` int(11) NOT NULL auto_increment,
`tutorialid` int(11) NOT NULL default '0',
`name` text NOT NULL,
`url` text NOT NULL,
`comment` text NOT NULL,
`email` text NOT NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`commentid`),
KEY `tutorialid` (`tutorialid`)


)

Posted by Brian Zimmer on Tuesday, 03.8.05 @ 05:44am | #385

well.. i tried everything.. and it still wont work for me.. please help.. i get this error:

I cannot connect to the database because: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (46)

database information i use.. i'm pretty sure its correct... but its not working..
$db_hostname = "localhost"/;
$db_username = "aspkin"/;
$db_pass = "password"/;
$db_name = "mysql"/;

i uploaded all files, created the comments table.. help!

Posted by donny on Thursday, 03.10.05 @ 01:45am | #386

Hope this works well and I can incorporate it into my new site...

Posted by Jeremy Whittaker (www.ukpoet.com)on Friday, 03.18.05 @ 06:18pm | #418

looks like a cool script!

Posted by andre on Wednesday, 03.30.05 @ 04:45pm | #429

hi there! i was just wondering, how could i change the script to make the newest posts topmost?

thanks!

Posted by shaun (http://shaunh.com)on Thursday, 04.14.05 @ 09:16pm | #493

thanks for the tweak brian! :)

Posted by shaun on Saturday, 04.16.05 @ 03:07am | #494

can you do it WITHOUT php?

Posted by Katie (http://www.eonxl.net)on Tuesday, 04.19.05 @ 12:54am | #496

To make it easier to use maybe have a seperate .css file for it too.

Great work

Posted by fantastic on Tuesday, 04.19.05 @ 07:35pm | #498

Correct, it would be better to have a seperate css file. But for the sake of this tutorial, I tried to use as few files as possible.

Posted by Brian Zimmer on Wednesday, 04.20.05 @ 12:57am | #499

Excellent script.
For anyone who is interested a page to clear rows you don’t want from table.
On my website edgey.no-ip.com under useful links

Posted by mick (http://www.edgey.no-ip.com/)on Wednesday, 04.20.05 @ 05:01pm | #500

how do you change the font size and color ?

can somone helm me please

grtz wes

Posted by wesley on Saturday, 04.23.05 @ 02:31pm | #502

and also when I "submit" the submit page is stuck and refreshes al the time. When I look into my database there are a lot of posts whith nothing on it. What can I do about that ?

Thx

Posted by wesley on Saturday, 04.23.05 @ 02:41pm | #506

Change the font size and color by changing the CSS part of the inc_rate.php file. Look inside the <style> tags. Look up CSS tutorials to learn how to change the font size, color, etc.

The page should refresh to the original page, but the latest comment will not be shown because the page was not completely refreshed. Remove the line:

<meta http-equiv='refresh' content='2/;URL=$tuturl'>

If you don't want this.

Posted by Brian Zimmer on Saturday, 04.23.05 @ 08:16pm | #508

thanks a lot for this info, I'm gonna test it now

grtz wes

Posted by Wesley Luyten on Sunday, 04.24.05 @ 05:37pm | #509

hi

just wanted to say that this is the perfect script that ive been searching for the past week. customizable and more importantly applicable to multiple pages.

thank you Brian!! i really appreciate it:)

Posted by js on Sunday, 04.24.05 @ 11:07pm | #510

While testing it I posted some comments which I now want to remove. Any way to do this.
The script on my website does this so you don't need to use php admin just place script in same folder give it an obscure name so only you can run it.
On my website edgey.no-ip.com under useful links

Posted by mick (mick@edgey.no-ip.com)on Sunday, 05.1.05 @ 09:57am | #519

Wordwrap problem solved by adding this at about this point
$commentbb = BBCode($commentrow[4])/;


$newtext = wordwrap($commentbb, 30, "\n", 1)/;



//create the right date format
$commentDate = formatDate($commentrow[6])/;

echo "<div class=\"commentbody\" id=\"$commentrow[0]\">\n
<p>$newtext</p>\n

Posted by Agent Bleu on Monday, 05.2.05 @ 03:14pm | #520

I tried installing the script, made my table in the SQL database and made the php files but whenever I put:

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
>

Into a page I get "Parse error: parse error, unexpected '>' in /home/destruct/public_html/bromicacid/comment.php on line 5"

Any suggestions? This was just a try at doing this as a test so it's just a php file with that code at the top.

Posted by RVincent (http://www.destructve.com/bromicacid)on Monday, 05.2.05 @ 07:36pm | #521

<?php
require('inc_rate.php')//;
getComments("test")//;
submitComments("test","$PHP_SELF")//;
>

I changed mysql data to varchar, and tried with above "test" but it will not enter anything in the db... why?

Posted by px (www.test.com)on Friday, 05.13.05 @ 05:12pm | #533

hmmmm this looks pretty good...

Posted by she devil on Friday, 05.20.05 @ 05:10am | #538

do you have that rating script you use on this page as well? That would be convienent... I'm going to browse your site ans see :)

Posted by she devil on Friday, 05.20.05 @ 05:15am | #540

Hi, I have php/mysql and apache installed on my hom computer, how is it I create the comments table? I thought the table.sql file did that automatically but when I checked what tables where being run there was on called mysql and another called test, any ideas? cheers

-------------------------------
Fatal error: Call to undefined function mysql_connect() in C:\Program Files\Apache Group\Apache2\htdocs\sub\inc_rate.php on line 16
-------------------------------

Posted by sneeZer (www.limevisual.com)on Monday, 05.23.05 @ 07:08pm | #544

I would like to use you script on my website. i would like my users to be able to post comments on other users profiles on my website without having the exact same comments on every profile. Can you help me achive this with your script.

Posted by Ben (http://www.chatopia.ca)on Tuesday, 05.31.05 @ 04:40pm | #553

Nevermind I Got It I Implemented It With My Hot Or Not Script Its Sooo Coool

Posted by ben (www.chatopia,ca)on Thursday, 06.2.05 @ 06:10am | #554

i might use this script on my site.... not sure yet though

Posted by just testing (www.wantsomethinglikethisonmysite.com)on Saturday, 06.11.05 @ 04:07pm | #563

Great script, I've been looking for something like this for a while now, I've only found one other free script like it on HotScripts.com, but the link was broken. :)

I'm having a really hard time linking to inc_rate.php on a web page that's 2 folders deep. I've tried putting ../../inc_rate.php and it doesn't work, I know i could just copy the file into that directory, but I can't imagine that's the correct thing to do. Any help is greatly appriciated.

Posted by Mike (www.club-gemini.com)on Sunday, 06.12.05 @ 01:06pm | #567

If your host has it, you can use phpMyAdmin. That's what I do.

Posted by Brian Zimmer on Monday, 06.13.05 @ 05:51pm | #575

Please, Is there any way to delete or edit the comments?

Otherwise works fine!

BTW -
Looks like one '?' is missing here:

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
>


Posted by Minna (http://www.minnasora.net)on Monday, 06.13.05 @ 05:51pm | #571

Re: [I}I'm having a really hard time linking to inc_rate.php on a web page that's 2 folders deep. I've tried putting ../../inc_rate.php and it doesn't work, I know i could just copy the file into that directory, but I can't imagine that's the correct thing to do. Any help is greatly appriciated.[/I]

Specify the complete path as you would access it on the server, not the site. Like on my site, I do the require(/home/sitename/public_html/inc_rate.php)

It works that way :)

Posted by Tim on Thursday, 06.23.05 @ 11:50pm | #581

This is only a test

Posted by Oliver Deocampo on Tuesday, 06.28.05 @ 02:35pm | #584

Thank you for this tutorial.

Posted by Rai on Wednesday, 06.29.05 @ 03:55am | #588

use this if u want to have buttoms to insert some bbcode

<script type="text/javascript">
<!--// Insert bbCode Script written By: willyduitt@hotmail.com
function setCaretPos(input){
if(input.createTextRange){
input.caretPos = document.selection.createRange().duplicate()/;
}
}

function insertAtCaret (input,button) {
if(document.all && input.caretPos && input.createTextRange){
if(button.value.match(/(\*)?(\w+\=\w+|\w)/i)){
var BBcode = RegExp.$2, isActive = RegExp.$1/;
if(BBcode.match(/^S$/i)){
alert('Please right click on the button and choose a '+button.value+'!')/;
return/;
}
if(BBcode.match(/^L$/i)){
var url = prompt('Please enter the URL of your link.','http://')/;
if(!input.caretPos.text){
var link = prompt('Please enter the text to display for the link.','')/;
if(link.length == 0) link = url/;
} else link = input.caretPos.text/;
input.caretPos.text = ''/;
return/;
}
if(BBcode.match(/^Q$/i)){
if(!input.caretPos.text){ BBcode = 'QUOTE' }/;
else{ input.caretPos.text = '

Quote:
'+input.caretPos.text+'
'/;
return/;
}
}
if(BBcode.match(/^C$/i)){
BBcode = 'COLOR='+button.style.color.toUpperCase()/;
}


if(input.caretPos.text.length == 0){
if(isActive) BBcode = BBcode.replace(/\=\w+$/,'')/;
input.caretPos.text = '['+isActive.replace(/\*/g,'/')+BBcode+']'/;
button.value = (button.value == button.value.replace(/\*/g,''))
? '*'+button.value.replace(/\*/g,'')
: button.value.replace(/\*/g,'')/;
}
else{ input.caretPos.text = '['+BBcode+']'+ input.caretPos.text
+ '[/'+BBcode.replace(/\=\w+$/,'')+']'/;
}
}
}
}
//-->
</script>

<?php
//create the form to submit comments
//you can add more fields, but make sure you add them to the db table and the page, submitcomment.php
echo "
<a name=\"post\">
<div id=\"submitcomment\" class=\"submitcomment\">
<form name=\"submitcomment\" method=\"post\" action=\"submitcomment.php\" onSubmit=\" return form_Validator(this)\">
<table width=\"100%\">
<tr>
<th colspan=\"2\"><h3 class=\"formtitle\">Deja tu comentario aqui</h3></th>
</tr>
<tr>

<th scope=\"row\"><p class=\"req\">Nombre:</p></th>
<td><input class=\"form\" tabindex=\"1\" id=\"name\" name=\"name\" /></td>
</tr>
<tr>
<th scope=\"row\"><p class=\"opt\">Email:</p></th>
<td><input class=\"form\" tabindex=\"2\" id=\"email\" name=\"email\" /></td>
</tr>
<tr>

<th scope=\"row\"><p class=\"opt\">URL:</p></th>
<td><input class=\"form\" tabindex=\"3\" id=\"url\" name=\"url\" /></td>
</tr>
<tr valign=\"top\">
<th scope=\"row\"><p class=\"req\">Comentario:</p><br />
<input type=\"button\" value=\"BOLD\" onclick=\"insertAtCaret(this.form.text,this)\">
<input type=\"button\" value=\"ITALIC\" onclick=\"insertAtCaret(this.form.text,this)\">
<input type=\"button\" value=\"UNDERLINE\" onclick=\"insertAtCaret(this.form.text,this)\">
<input type=\"button\" value=\"COLOR\"
style=\"color:red\"
onclick=\"insertAtCaret(this.form.text,this)\"
oncontextmenu=\"var color=prompt('What Color?','RED')/;
if(color && color.length>0){
this.style.color=color/;
insertAtCaret(this.form.text,this)}
return false\">

<input type=\"button\" value=\"SIZE\"
onclick=\"insertAtCaret(this.form.text,this)\"
oncontextmenu=\"var size=prompt('What Size (1-7)?','3')/;
if(size){
if(!isNaN(size)){
this.value='SIZE='+size/;
insertAtCaret(this.form.text,this)}
else{alert('Please choose a number between 1 & 7')}}
else{this.value='SIZE'}
return false\">

<input type=\"button\" value=\"LINK\" onclick=\"insertAtCaret(this.form.text,this)\">
<input type=\"button\" value=\"QUOTE\" onclick=\"insertAtCaret(this.form.text,this)\">

</th>
<td><textarea class=\"formtext\" tabindex=\"4\" id=\"text\" name=\"text\" onselect=\"setCaretPos(this)/;\" onclick=\"setCaretPos(this)/;\" onkeyup=\"setCaretPos(this)/;\" rows=\"10\" cols=\"50\"></textarea></td>
</tr>

<tr>
<td> /;</td>
<td><input type=\"submit\" name=\"post\" class=\"submit\" value=\"Submit Comment\" /><br />




</td>
</tr>
</table>
<input type=\"hidden\" name=\"tuturl\" value=\"$tuturl\" />
<input type=\"hidden\" name=\"tutid2\" value=\"$tutid2\" />
</form>

Posted by jaime (www.myspacepics.tk)on Wednesday, 06.29.05 @ 02:23pm | #591

just a test...

Posted by Matt (http://www.sloughflash.com)on Sunday, 07.10.05 @ 10:16pm | #609

thanks for the tutorial it was great, but i have one question: how so you change the date format from am/pm to 24h time?? thanks in advance

// Mattias

Posted by Mattias (www.spathax.frac.dk)on Monday, 07.11.05 @ 05:11pm | #610

sorry i meant how do you change not how so you change

Posted by mattias on Monday, 07.11.05 @ 05:15pm | #611

nice

Posted by lola (lola.com)on Friday, 07.15.05 @ 05:51pm | #612

What happened to the tutorial, all I see is programming a little information about it?

Posted by Matthew Bonner (http://matthewbonner.homeip.net/)on Sunday, 07.17.05 @ 09:39am | #613

a

Posted by a on Saturday, 07.23.05 @ 12:08pm | #618

Hi,

I've been looking for ages for a script like this. Very nice, thank you ‹(•¿•)›

Posted by Mutant (http://www.mutantpc.f2s.com/league/week1.php)on Thursday, 07.28.05 @ 02:14pm | #627

This is prety cool!
and

Posted by wow (url)on Tuesday, 08.2.05 @ 08:40pm | #636

how r u?

Posted by ravi on Friday, 08.5.05 @ 05:38am | #639

i like the script. but i m not programmer. and i diont know programing. but i want add comment box to my site. please guide me actualy step by step, what to do? what will be the final output file extension?

Posted by ravindra on Friday, 08.5.05 @ 06:05am | #640

allo

Posted by bastros (www.lko.com)on Thursday, 08.11.05 @ 11:36am | #647

allo

Posted by bastros (www.lko.com)on Thursday, 08.11.05 @ 11:37am | #648

Hi again!

I was wondering, if this script is protedted from sql-injections? http://www.sitepoint.com/article/sql-injection-attacks-safe


Minna

Posted by Minna (http://www.minnasora.net/)on Thursday, 08.11.05 @ 05:20pm | #650

Test

Posted by Dre on Friday, 08.12.05 @ 12:53am | #651

Woo! This is a nice code, just what I was looking for. Gave me some problems though. Nothing I couldn't get around.

If your page dosen't return, refresh and creates like 100s of post with nothing in them. Replace the slimlar code in submitcomment.php with:

"<meta http-equiv='refresh' content='2/;URL=javascript:history.back()/;'>"/;

This will return the page but the poster will have to refresh the page himself to see his comment.

Posted by Dre (www.allugic.tk)on Friday, 08.12.05 @ 01:19am | #652

This looks to be exactly what I need (or very nearly).

is there any way to add a 'challenge' to the submission process to reduce/eliminate auto spam posts? You know, one of the distorted text images that a computer can't read by a human can.

Oh, is there an easy way to include or call the script in plain HTML docs? I know with cgi scripts I can change htaccess to execute .cgi from an html page. Is this possible?

Otherwise it looks great! Thanks.

Posted by eric on Tuesday, 08.16.05 @ 08:43am | #656

The comments are stored in a mySQL database on your server. You must have one in order to use this script. To edit the comments, I use phpMyAdmin, which you can install on your server for free if your host doesn't already have it. You can download it here: http://www.phpmyadmin.net/home_page/

Posted by Brian Zimmer on Monday, 08.22.05 @ 05:15pm | #664

The comments are stored in a mySQL database on your server. You must have one in order to use this script. To edit the comments, I use phpMyAdmin, which you can install on your server for free if your host doesn't already have it. You can download it here: http://www.phpmyadmin.net/home_page/

Posted by Brian Zimmer on Monday, 08.22.05 @ 05:15pm | #665

Hey
I was wondering if there is some way that I can change this:

<?php
require('inc_rate.php')//;
getComments("1")//;
submitComments("1","$PHP_SELF")//;
>

So that it always creates a uniqe commentbox so that i don't have to do it my self by changing the number. It's mostly because I'm trying to use you script with a gallery script and i want my useres to be able to comment on every picture seperately if you understand what I meen?

what I'm trying to do is shown here: www.php2004.1go.dk/images/

btw. sorry for my poor english

Posted by Niels (php2004.1go.dk/images/)on Sunday, 09.4.05 @ 09:41am | #676

You have to make the commentid unique to each picture.

So in your case, the only thing unique to each picture is the picture name, so we can use that as the id. The picture name is sent in the URL as ?i=picturename.jpg, so to use this in php we use $i.

So, when you create your table, change the line:

'tutorialid' int(11) NOT NULL default '0',

To:

'tutorialid' varchar(64) NOT NULL,

Then change:

<?php
require('inc_rate.php')///;
getComments("1")///;
submitComments("1","$PHP_SELF")///;
>

To

<?php
require('inc_rate.php')///;
getComments($i)///;
submitComments($i,"$PHP_SELF")///;
>

Posted by Brian Zimmer on Monday, 09.5.05 @ 10:09am | #689

I am looking for the same thing, I have a profile system set up and I was wondering if I could paste some code to allow a new comment field to be set up for them. Instead of using a number system for new comments, could it be done through an ID? Also too.. was wondering how to delete comments, or even how a a member could delete it themselves.
Thanks for any input, nice script by the way!!

~Morphic

Posted by Morphic on Sunday, 09.18.05 @ 08:41pm | #688

It seems that this script loads new comments at the bottom, is there anyway to reverse it? Making the new comments appear first at the top?

Posted by Josh on Friday, 09.30.05 @ 11:50pm | #696

Very good comment script! I like it

Posted by Zach (http://www.ultimatethrillzone.com)on Saturday, 10.1.05 @ 06:49pm | #697

Sorry I should've read the WHOLE tutorial.. found it, thanks!

Posted by Josh on Thursday, 10.6.05 @ 12:25pm | #701

i installed apache2triad, added the database in mysql with phpmysql,,,,changed in inc_rate.php and testpage.php the 4 settings (hostname,username,pass,name) and placed them in the root my server.
the testpage loads normaly, but now when i want add a comment and press the submit button it just returns to the same site without showing the content of the types message.
what i am doing wrong?

look for an example
http://kyrylivka.mine.nu/testpage.php

Posted by Gillis on Thursday, 10.20.05 @ 12:45pm | #705

I have a problem, it wants to redeclare the bbcode if i put multiple comments comment in 1 page

i want to add 1 or more "add comment" codes in 1 page, but im getting this error if i put more then 1 in it....

how do i fix it?

Fatal error: Cannot redeclare bbcode() (previously declared in /home/www/***************/inc_rate.php:144

Posted by revelation on Saturday, 10.22.05 @ 06:38am | #706

Very nice, what are the security features of this script?

Posted by Krayis on Sunday, 11.27.05 @ 01:36am | #734

Very nice, what are the security features of this script?

Posted by Krayis on Sunday, 11.27.05 @ 01:37am | #735

good service

Posted by Frank Johnson (http://www.none.com)on Tuesday, 12.6.05 @ 03:04am | #739

greetings there - great script it is pretty much what i have been looking for. i did, however, have a few questions/issues i wanted to know if there way a way around them :)

*someone up top asked this:

<i>basically, I want to display in groups of 10. How do I do this? Do I have to manually create a new page every time it hits 10 or is there a way for it to automatically create a page such hat when I hit 11 comments, the first one automatically goes to the 2nd page and so on (and when it hits 21, the 1st comment goes to 3rd page, next ten on 2nd page, last 10 on first page, etc). Also, once I do that, how would I call each page?</i>

and i cannot seem to find if you replied with an answer. if the answer is no that's fine but if there is a way to automatically create a new page after 5 comments or so that would rule

also - is there a way to have the comments script and the 'comment here' script on differnet pages?

thanks

cloei

Posted by cloei (http://www.riotdorque.net)on Wednesday, 12.7.05 @ 05:00am | #740

<b>Test
<i>Test
http://www.bedpan.ca

Woo...

Posted by JMan (http://www.bedpan.ca)on Friday, 12.9.05 @ 11:36am | #741

<b>Test</b>
<i>Test</i>
<u>Test</u>
Agh, ignore that. =)

Pretty nice code, althought it's very long.

Posted by Someone you don't want to know. (www.elementalflash.com)on Saturday, 12.10.05 @ 08:23am | #742

Is it possible to set the 'number' in

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

to the 'id' of my mysql table so that I don't have to edit this by hand?

How would i do that?

Posted by W1lly on Saturday, 12.10.05 @ 08:48am | #743

I like this script. Quite useful!

Posted by RabidMonkey (http://www.rabid-monkey.com)on Sunday, 12.11.05 @ 05:11am | #744

My server is in a different time zone than the readers of my website are. How can I add six hours to the time of a comment in this script?

Posted by Peter (www.pattayafamily.com)on Friday, 12.16.05 @ 12:25am | #749

How do I find out the name of the database?

Posted by Scott on Friday, 12.16.05 @ 02:39pm | #750

this tutorial has helped me alot :)

Posted by tom (www.templatemadness.co.uk)on Saturday, 12.17.05 @ 12:22pm | #752

I was wondering if there is a way to get the "posted by _____ etc.." info above the comment instead of below it?

thanks

Posted by Scott on Monday, 12.19.05 @ 02:50pm | #754

Hello,

I am using html based php.
I cannot get the "submit form" do its job.
It won't submit anything..

help.

Posted by Macka 2.0 (allthesmallthings.fil.ph)on Monday, 12.26.05 @ 07:53pm | #762

YOU'RE A GOD!
YOU OWN ME!

OMG!! :)

Posted by Macka 2.0 (allthesmallthings.fil.ph)on Friday, 12.30.05 @ 07:19pm | #767

Helped ALOT!! THX!!

Posted by MsM on Thursday, 01.5.06 @ 10:10pm | #772

Love the script,

Can anyone be of some assistance and guide me in the right dircetion to do the following/;

Add an additional field such as comments #1 and comments #2 for example, much appreciated for any guidance you can offer.

Posted by Jackrabbit on Thursday, 01.12.06 @ 09:31pm | #779

Nice tutorial

Posted by Xeon on Saturday, 01.14.06 @ 07:35pm | #782

HTML and Javascript is disabled for security reasons. BBCode is used instead for formatting.

Posted by Brian on Sunday, 01.15.06 @ 06:07am | #2233

Thnakyou so uch for making this tutorial, it's great and actually works, unlike nearly every other comment tutorial.

Posted by Jamie (http://www.hotsnow.co.uk/school/)on Sunday, 01.15.06 @ 10:10am | #786

nice tutorial

Posted by ripix (http://phase02.org)on Saturday, 01.21.06 @ 09:14am | #797

after I've submitted the comment, I'm not redirected back to previous page but submitcomment.php reloads every 2 seconds

Posted by elfrosto (www.burgerbeer.org)on Thursday, 01.26.06 @ 11:07am | #802

after I've submitted the comment, I'm not redirected back to previous page but submitcomment.php reloads every 2 seconds

Posted by elfrosto (www.burgerbeer.org)on Thursday, 01.26.06 @ 11:10am | #803

In which file do I create the SQL database? Thanks

Posted by Daymond (www.divinedesignsbyd.com)on Wednesday, 02.1.06 @ 08:46am | #810

Just Chekin. Can't seen to get it to work

Posted by Bryant on Tuesday, 02.7.06 @ 02:34am | #817

the redirection part doesn`t work...it redirects me to the same page :| (submitcomment.php)

nice script. tnx

Posted by x on Tuesday, 02.7.06 @ 04:20pm | #820

Well...i have one question...how can I make the script start a new page every 10 (example) posts?

I hope you understand what I want.

tnx for the script

Posted by DotCom on Tuesday, 02.7.06 @ 05:55pm | #821

Wow. This is cool.

Posted by Yves on Thursday, 02.9.06 @ 04:19pm | #829

Great script! Just what i was looking for, Thanks!

I did however add some code to submitcomment.php to mail me whenever someone leaves a comment and it tells me also on which page the comment was written. Saves a lot of time and energy if you use the script on multiple pages. /;-)

$MailToAddress = "something@yourdomain.com"/;
$MailSubject = "comment on $tuturl"/;
$Message = "$name wrote: \n\n $message \n\n on http://www.yourdomain.com$tuturl"/;


if (!is_array($HTTP_POST_VARS))
return/;
reset($HTTP_POST_VARS)/;
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val/;
$val=stripslashes($val)/;


}
mail( "$MailToAddress", "$MailSubject", "$Message", "From: $email")/;

Posted by Dorine (http://www.allemaalkatten.nl)on Wednesday, 02.15.06 @ 04:01pm | #849

Can you make an Admin.php that we can edit or delet some comment

Posted by tony on Friday, 02.17.06 @ 03:27am | #852

sweet ima try it out.

Posted by Reeve (http://stevents.net)on Sunday, 02.19.06 @ 10:38pm | #854

sweet ima try it out.

Posted by Reeve (http://stevents.net)on Sunday, 02.19.06 @ 10:41pm | #856

Where is the "e-mail" information going ???

Posted by Adam on Friday, 03.3.06 @ 06:09pm | #881

Ok nevermind ! stupid question ! :S

Posted by Adam on Friday, 03.3.06 @ 06:10pm | #882

Hi,
how do i make the text "posted by..." Smaller than the rest of the text ???

I tried adding H6,H7 or ++ in

//create the right date format
$commentDate = formatDate($commentrow[6])/;

echo "<div class=\"commentbody\" id=\"$commentrow[0]\">\n
<p>$commentbb</p>\n
<h6 p class=\"postedby\">Posté par "/;
if($commentrow[3]){
echo "<a href=\"$commentrow[3]\">$commentrow[2]</a> "/;
} else {
echo "$commentrow[2] "/;
}
echo "le $commentDate | #$commentrow[0]</h6></p>\n
\n</div>"/;

}
echo "</div>"/;
}




And it didn't work and i don't know what to do else..
Thanks !

Posted by Adam on Friday, 03.3.06 @ 08:28pm | #883

Nice Tutorial...

Posted by Nick (www.qindustries.co.nr)on Wednesday, 03.8.06 @ 05:29am | #892

I LOVE THIS COMMENT SYSTEM!!! You're the best!

Posted by .albino (http://zerodesignz.net)on Wednesday, 03.15.06 @ 11:28am | #909

This looks like something I could use.

Posted by Sammy Snead on Friday, 03.24.06 @ 11:10pm | #930

i have a few questions...firstly i keep getting sent to the 'Submission Successful' page, but then it doesnt return me to the previous page, it just keeps on trying to over and over, but nothing happens.
Secondly, how can i make it so the table is centred on the page instead of hard up against the left edge?

Thanks for your help, awesome script by the way

Posted by Andrew (http://www.teejunctiononline.com)on Monday, 03.27.06 @ 10:37am | #936

To get back the site with the last comment visible just change the:

if($sendcomment){
//header("Location: $tuturl")/;
echo "<h1>Submission Successful</h1>"/;
echo "Your comment has been submitted. You will now be redirected back to the last page you visited. Thanks!"/;
echo "<meta http-equiv='refresh' content='2/;URL=$tuturl'>"/;
} else {
echo "There was an error with the submission. "/;
}

into:
if($sendcomment){
header("Location: {$_SERVER['HTTP_REFERER']}")/;
} else {
echo "There was an error with the submission. "/;
}

And that's it. I hope it helps someone else:)

Posted by someone on Monday, 04.10.06 @ 05:37am | #967

Greetings. The script seems very nice and it is well explained.
I would like to add it to my website to make easy for visitors to post comments on articles (who are stored in a table "articles" and located by the field "id_article").
You are actually using a "page number" (e.g. 22), where can i, or do i have, to call/insert that value ?

do i have to modify

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

by

<?php
require('inc_rate.php')/;
getComments("id_article")/;
submitComments("id_article","$PHP_SELF")/;
?>

in submitcomment.php
to i have to connect to my table "articles" and get "$id-article"?
but where in "getcomment" function? :)

i suppose i can also try to add an id_article field in your table and cross it with "my" table (but how :)

Sorry for my english and congratulations for your job!!! /;-)

Posted by Laurent (http://www.atemporel.com)on Wednesday, 04.12.06 @ 04:29am | #972

test@ hi there?!

Posted by test (test)on Monday, 04.17.06 @ 08:36am | #984

test@ hi there?!

Posted by test (test)on Monday, 04.17.06 @ 08:50am | #985

i wanna make the pagenuber set by profilenumber how do i do this? the variable is i think "$smarty.get.id" but not sure but can find out later the question is can i use a variable on the id?
looks great and is there a adminsection?

greetzzz Edwin

Posted by Edwin on Saturday, 04.22.06 @ 10:36am | #997

this script looks easy to configure. the only problem i have with this is that the comment number seems to be including the count for post from other threads/pages.

does anybody know how to fix this?

echo "on $commentDate | #$commentrow[0]</p>\n

Posted by boy_bastos on Sunday, 04.23.06 @ 05:17am | #999

checking out duplicate posts would be nice too. oh well.

Posted by boy_bastos on Sunday, 04.23.06 @ 05:20am | #1001

heh, trawling server logs, glad to see my bbcode script still being used ... that was one of my first ever php scripts I wrote to teach myself php!

GL!

Posted by Duncan Mundell on Tuesday, 04.25.06 @ 09:25pm | #1007

heh, trawling server logs, glad to see my bbcode script still being used ... that was one of my first ever php scripts I wrote to teach myself php!

GL!

Posted by Duncan Mundell on Tuesday, 04.25.06 @ 09:25pm | #1008

i'm having trouble!! i loved your tutorial! but i cant get the page to post in the database!

i really need help! if anyone can help me please do!

i think it postes but only the commentid, the toturialid and the date, the rest doenst apear!

please help me! mingos.mufassa@gmail.com is my emai!

tanks everyone

Posted by Omega on Tuesday, 04.25.06 @ 11:34pm | #1009

great script!
Have one question, is it possible to set a limit for how many entries it should be on a page??

so it automaticly makes several pages if I have that many comments.

gustaf.gillander@gmail.com
thanks in advance

Posted by Jegarn (http://lux.blg.edu.stockholm.se/~gugil001/gruppsida/)on Tuesday, 05.9.06 @ 12:17pm | #1039

One thing more.
How to I get those cubes in front of Posted by..... in the bottom

Posted by Jegarn (http://lux.blg.edu.stockholm.se/~gugil001/gruppsida/)on Tuesday, 05.9.06 @ 12:19pm | #1040

Great!

10x 4 posting it

And2

Posted by And2 on Wednesday, 05.17.06 @ 01:48pm | #1054

nice script. very very nice.

Posted by robert on Friday, 05.26.06 @ 04:35pm | #1147

For anyone who might be interested...

I downloaded this script a few months earlier for use on my website and i am using it on multiple pages. Due to the overwhelming succes of this script on my pages i had to addept the script to my needs and in the mean time i have modified the script so that:

1. When a new comment has been placed the admin receives a mail containing the comment and the url to the page.
2. There is a possibility to respond to the comments on the page or by mail if the email was filled.
3. If the commenter filled in the emailaddress, they get an email if someone reponds to their comment.
4. I included a paginator script that limits the entries on a page and
5. I have almost completed creating an admin section for editing or deleting comments.

Not bad for a newbie in php don't you think?

If you would like to see how it works on my site take a look at the bottom of this page > http://allemaalkatten.nl/verzorging/drachtig.html

Posted by Dorine Post (http://allemaalkatten.nl)on Wednesday, 05.31.06 @ 12:30pm | #1326

Hm... i cant get it to work.. but i dont think i have my mysql database configed correctly

Posted by Michael Czigler (http://sbb.us.to)on Friday, 06.2.06 @ 09:42pm | #1415

can someone tell me why this isn/;t working...

<?php

//Connect to the database
$connection = mysql_connect ( "localhost", "myusername", "mypassword" )/;

$sql = 'CREATE TABLE `comments` (
`commentid` int(11) NOT NULL auto_increment,
`tutorialid` int(11) NOT NULL default '0',
`name` text NOT NULL,
`url` text NOT NULL,
`comment` text NOT NULL,
`email` text NOT NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`commentid`),
KEY `tutorialid` (`tutorialid`)
)'/;
echo 'Creating table: \'zones\'....'/;
mysql_query( $sql, $conn )/;

?>

Posted by Mike on Saturday, 06.3.06 @ 12:59am | #1421

Thanks for the script it is just what I was looking for!

Works great.

Posted by jmartellpro on Monday, 06.12.06 @ 07:55pm | #1906

It's showing the wrong date and time. How can I solve this problem? It's showing the year as 2007 and the time is out by 4 hours.

Seems to be something to do with the now() function?

Posted by James on Sunday, 06.18.06 @ 12:59am | #2063

I've sorted it, it was something I'd done with the code. Had changed the mktime() day and month around instead of the code before it, to show the more normal day, month, year. Yanks are so odd with their month, day, year business.

Posted by James on Sunday, 06.18.06 @ 03:55am | #2070

HELP
I uploaded games.php (the page where I want the comment box to appear), inc_rate.php, submitcomment.php and table.sql into the same directory. But when I opened my page, the showed up:

Table 'osforum.comments' doesn't exist

help please

Posted by jingquan (http://www.orandysoftware.com)on Saturday, 07.8.06 @ 07:06am | #2246

How do I change the font size. Many thanks in advance.

Posted by bamy on Saturday, 07.8.06 @ 08:09am | #2247

Nice tutorial

Posted by GG on Tuesday, 07.18.06 @ 10:05pm | #2309

Genius small fast and simple script.
Easy to edit PHP, so it goes anywhere

Posted by Critic (http://www.charlottecritic.com)on Wednesday, 08.2.06 @ 12:28pm | #2559

Wonderful script, works like a charm except for the bit that should return back to the original page after a comment has been submitted. I found three solutions in the comments here but none of them seem to work. Can anybody shed any light on this?

Thanks in advance.

Posted by Verian on Thursday, 08.3.06 @ 02:38pm | #2560

Hi!
There is a problem with the url system...When I type in the url and submit my comment the auto-linking system does this:
http://mywebsiteaddress/somefolder/the_submited_url
Why is this happening?
Please reply

Posted by vlad230 (www.auto-tuning.fusionxhost.com)on Sunday, 08.6.06 @ 01:50pm | #2562

testing html <img src"http://www.anothernightout.com/chemofluxxe/pic1b.jpg">

Posted by macky (does this allow html inside comments?)on Saturday, 08.12.06 @ 03:04pm | #2566

testing html <img src="http://www.anothernightout.com/chemofluxxe/pic1b.jpg">

Posted by macky (does this allow html inside comments?)on Saturday, 08.12.06 @ 03:05pm | #2567

thanks man

Posted by fadi on Wednesday, 08.16.06 @ 08:23am | #2572

thanks man

Posted by fadi on Wednesday, 08.16.06 @ 08:24am | #2573

People are still using this?

Should be blank line above

thanks

Posted by b (www.a.com)on Sunday, 08.20.06 @ 08:32pm | #2575

coooooool


[URL="http://www.google.com"]google[/URL]

Posted by jem on Wednesday, 08.23.06 @ 02:34am | #2581

rshdyjtfgsbyjdghjjhjhj

Posted by ddh (dhhhdhfgh)on Friday, 09.8.06 @ 08:47am | #2590

test

Posted by test on Thursday, 09.14.06 @ 09:02am | #2592

nice script

Posted by test on Sunday, 09.17.06 @ 11:36am | #2596

nice script

Posted by test on Sunday, 09.17.06 @ 12:05pm | #2597

hidsfsdfsdf

Posted by falih on Sunday, 09.24.06 @ 02:49am | #2601

www.google.com

or

http://www.google.com

Posted by Tester on Sunday, 09.24.06 @ 06:17am | #2602

hillo

Posted by boo on Sunday, 09.24.06 @ 06:45am | #2603

Nice Script :)

Posted by DarkAngelBv (http://www.darkangelbv.iad.ro)on Monday, 09.25.06 @ 10:16am | #2604

Very nice script

Posted by Buddy on Wednesday, 09.27.06 @ 09:16am | #2605

Very nice script

Posted by Buddy on Wednesday, 09.27.06 @ 09:16am | #2606

yea

Posted by keith on Wednesday, 10.4.06 @ 08:59am | #2609

Looking for a simple script for our newest site. tHis might just be it.

Posted by CoffeeTimer (http://www.alaskastudentloan.net)on Thursday, 10.5.06 @ 10:36am | #2610

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2612

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2613

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2614

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2615

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2616

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2617

thanks

Posted by John Mayer (svrclanrip.tripod.com)on Saturday, 10.7.06 @ 02:00pm | #2618

I got everything to work, but when I try submitting a comment, I get:

There was an error with the submission.

Anyway to fix this?

Posted by Rodrigo (www.bioviral.net)on Saturday, 10.7.06 @ 05:14pm | #2619

testing did'nt.

Posted by test on Sunday, 10.8.06 @ 08:35am | #2620

I've lost all respect for you. You are a very sick, sick boy. Don't ever talk to me anymore.

Posted by mandy on Sunday, 10.8.06 @ 08:44am | #2621

I need help I can't put single quotation marks between letters such as "Don't" or "I've". It returns error "There was an error with the submission." What seems to be the problem?

Posted by Daniel on Sunday, 10.8.06 @ 09:42am | #2622

I just wanted to say a HUGE thank you for the most usefull tutorial!!!

Posted by michel (http://www.michelvanessen.com)on Monday, 10.9.06 @ 03:24pm | #2623

hi there i testing this script it seems to be useful but what i wonder is how to change date format eg delete the day name

Posted by alibaba on Thursday, 10.12.06 @ 06:16am | #2626

This could be what I'm after...

Posted by bert schneider (www.makesaracket.com)on Friday, 10.13.06 @ 07:22am | #2627

hey i got a user system how do i make it so they have to be an user to make a comment

Posted by darkclaw on Wednesday, 10.18.06 @ 07:09pm | #2629

Awesome script. I got it working on the first try.

I even tweaked the comment ID to match the video/photo ID on my site.

Im totaly over the moon!!

Thank you for sharing such a simple easy tutorial.

Posted by Kerry (http://www.ringaroot.com)on Wednesday, 10.25.06 @ 06:57am | #2637

Excellent tutorial, working first time, looking great! thx

Posted by Dave (http://www.creative-networks.org)on Friday, 10.27.06 @ 11:39am | #2640

hey, thanks so much for this script!!!!! its been a life saver!

Posted by Jonescy73 (www.yeshuagirl.com)on Monday, 10.30.06 @ 01:13pm | #2644

Hey, I am having a problem.

It doesn't redirect back to the original page. Was there anywhere that we were supposed to specify where our original page is located?

Posted by Travis Doerr on Wednesday, 11.1.06 @ 05:32pm | #2646

Incredible Script!

Works perfectly on my website. I'm gonna put this on digg.

Thanks for the script. I have been looking for something like this for a long time.

Posted by Manhas (www.wizardsbuzz.com)on Monday, 11.6.06 @ 03:02pm | #2648

great script...i was able to install it...but it just it doesn't redirect me to the page where i posted...it just keeps reloading...what do i do?

Posted by booster on Saturday, 11.11.06 @ 08:21am | #2658

This is a great script and will work excellent for my new video gaming section!
For all you noobies that are confused with this, heres a breakdown on how to create the MYSQL database:
1. You need to have a site that supports php and mysql. No questions asked. This will not work with shtml, asp, or any other kind of ssi include because you need a DATABASE!!!!

2. If you have a site that supports php and mysql, first you need to create a user and a database. If you are on a real site with a C-PANEL, this is easy. Click on MYSQL databases. Go to the bottom of the list. Create a user. Call it whatever you want, preferably the begginging of it with the name of your username you log into your cpanel with. Mine looked like this: kumitek_user. You put your username to log into the c-panel with: ex. kumitek. Then an underscore: ex. kumitek_. Next, make up any name you want that isn't being used in your database: kumitek_user

3. Once you have your user, hit create and then it will say user created. Go back to the next page, and go to create database. Use the same step for making a database, with the username underscore and then choose a different name for your comment database. Example: kumitek_comments

3. Next, you need to add the user to the database. Go to the "add user to database" section in your mysql database page. Look on the list for the user created before, and then add it to the database you just made with ALL PRIVALEGES check. Then hit add user. You user will now be added to the database.

4. After you have made a user and database, you will now have to configure your database. On you MSQL database main page, scroll to the very bottom of the page. You should see a link called "PHP My admin" or somthing like that. Click on it and it should open in a new window.

5. You will now be on a somewhat confusing looking page, but I will walk you through what to do. Look on the left, you should see a scrolldown box. Look for your *DATABASE* (not user, database, which was the last thing you created on the mysql database page). Click on your database. You will now come to a new page with 2 new fields, asking what you want in your table and number of fields or somthing like that, just IGNORE THIS!!!!!!!!!

6. Look on the top of the page after you have clicked on your database name previously. Look for a link called MYSQL. Click on it, and it will bring you to a page with a field, above the field saying somthing about running querys and stuff like that.

7. In the blank field, enter the following information to get the database setup:

CREATE TABLE `comments` (
`commentid` int(11) NOT NULL auto_increment,
`tutorialid` int(11) NOT NULL default '0',
`name` text NOT NULL,
`url` text NOT NULL,
`comment` text NOT NULL,
`email` text NOT NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`commentid`),
KEY `tutorialid` (`tutorialid`)
)

8. After you enter that info, hit ok, or go, or enter or whatever the little thing says on the bottom right of the field. You should get a message saying that your database was created successfully. You can now leave the database screen.

Thats it. Its all pretty straight foward from here. Just follow the rest of the comment tutorial.

Posted by Eddie (www.sedativechunk.com)on Saturday, 11.11.06 @ 04:37pm | #2659

I wonder if this works.

Posted by jc (td)on Tuesday, 11.14.06 @ 08:45am | #2661

just testing

Posted by moni (moni)on Thursday, 11.16.06 @ 12:36pm | #2662

just testing

Posted by moni (moni)on Thursday, 11.16.06 @ 12:36pm | #2663

hi there...thanks so much for the scrip...i've been trying to figure out this bug...when i test the url it shows up like this > http://www.domain.com/www.mydomain.com ...instead of just showing www.mydomain.com...please could anyone help me?

also...when i type can't, don't, I'm or anything with a single quotation mark it returns an error when i submit...please help...i really can't

Posted by boost on Saturday, 11.18.06 @ 02:41pm | #2666

Hi, I'm not a programmer I'm more of a design person so all this is like foriegn to me. I'm learning as I go but I'm in great need of a comment script for my video feed back. How can I accomplish this with this tutorial? How do I create a database? Please talk to me in basic terms. I'm very slow when it comes to codes.

Posted by Ross Lytle (www.thasession.com)on Tuesday, 11.21.06 @ 10:19am | #2668

This tutorial and download was phenomenal. I have looked absolutely everywhere for a commenting system. I have found the one I will use.

Thanks Alot!

Posted by Jordan (http://www.jdlmultimedia.attaxhosting.com/)on Tuesday, 11.28.06 @ 09:18am | #2672

I am just trying it on for size because I like how it looks.

Posted by deadhippo ( http://www.cafepress.com/ruderetro)on Thursday, 11.30.06 @ 05:25am | #2673

wow, looks like i finally found a quality guestbook!!

Posted by K on Wednesday, 12.6.06 @ 01:51am | #2675

hm, maybe there should be an automatic reload function....

Posted by K on Wednesday, 12.6.06 @ 01:52am | #2678

the automatic redirection doesnt work is there a way to fix this?

Posted by deadscenekid (http://www.hyperhack.com)on Thursday, 12.7.06 @ 05:26pm | #2679

Nice tutorial...fantastic.

Posted by Kiran (none)on Tuesday, 12.12.06 @ 07:59am | #2680

Nice tutorial...fantastic.

Posted by Kiran (none)on Tuesday, 12.12.06 @ 08:00am | #2681

Nice.....thank you!

Regards from Slovenia

Posted by Niniima (www.mhl-maribor.com)on Thursday, 12.21.06 @ 03:55am | #2684

I have see your site, it's good and i got the required information from your site. In future you must modify your site. I have also made a site that is www.lookkathmandu.cjb.net

Posted by raju on Saturday, 12.30.06 @ 02:40am | #2696

Here I am testing this on December 31 at 3:28AM ...

Posted by Tester on Sunday, 12.31.06 @ 01:28am | #2698

Testing

Posted by qupa (www.qupa.com)on Tuesday, 01.2.07 @ 04:55am | #2702

Testing

Posted by qupa (www.qupa.com)on Tuesday, 01.2.07 @ 04:57am | #2703

JUST TESTING

Posted by SAM on Tuesday, 01.2.07 @ 02:53pm | #2705

Testing

Posted by Brandon (google.com)on Sunday, 01.7.07 @ 11:16am | #2708

I'm having problems getting redirected back to the original page it adds Array/ to the URL

Also you should use submitComments("1","$_SERVER'PHP_SELF'")/;
Instead of submitComments("1","$PHP_SELF")/;

Other than that Thanks for the code

Posted by CSmyre on Sunday, 01.7.07 @ 06:13pm | #2709

will it accept graphics

<a href=http://www.glitter-graphics.com title='Myspace Graphics'><img src=http://dl3.glitter-graphics.net/pub/55/55639v34z3dxmto.gif width=165 height=219 alt='myspace layouts, myspace codes, glitter graphics' border=0></a>

Posted by minnie on Thursday, 01.11.07 @ 11:04am | #2711

i dnt seem to be able to get to the submit succesful page?

Posted by sam on Thursday, 01.18.07 @ 05:05pm | #2720

testing

Posted by sam on Thursday, 01.18.07 @ 05:26pm | #2721

I managed to work my way through a few errors I made in typing, but after all the parser errors I fixed, now it won't let me actually submit. I get the error message every time. It gets through to the server fine but is acting like it won't allow the updating of the table. Any ideas?

Posted by Bill (www.williamrambo.com/commentz.php)on Friday, 01.19.07 @ 11:01am | #2722

dog

Posted by yo (now)on Saturday, 01.20.07 @ 11:16pm | #2724

please leave a comment

Posted by ISIDRANS'04 (http://www.freewebs.com/isidrans04/index.htm)on Monday, 01.22.07 @ 08:58pm | #2728

Can someone clever tell me how to add a CAPTCHA?! All I need is the code /;-)

Posted by Niko on Thursday, 01.25.07 @ 05:14am | #2732

Hi, Great comment script!

But you should add an easy admin area, where the admin can review and delete unwanted and not needed comments easy!

Posted by Skilltuts.com (http://skilltuts.com)on Thursday, 01.25.07 @ 01:01pm | #2733

test

Posted by scott on Monday, 01.29.07 @ 08:35am | #2738

testing this

Posted by jr (http://honkingduck.com)on Monday, 01.29.07 @ 08:09pm | #2740

testing this

Posted by jr (http://honkingduck.com)on Monday, 01.29.07 @ 08:11pm | #2741

testing this

Posted by jr (http://honkingduck.com)on Monday, 01.29.07 @ 08:11pm | #2742

testing this

Posted by jr (http://honkingduck.com)on Monday, 01.29.07 @ 08:12pm | #2743

testing this http://honkingduck.com

Posted by jr (http://honkingduck.com)on Monday, 01.29.07 @ 08:13pm | #2744

I wonder if this could be modified to run from text files, I don't have a clue about Mysql, or lots of other things.
http://albany6330.com

Posted by ronlater (http://albany6330.com)on Wednesday, 01.31.07 @ 05:35pm | #2747

I don't know why but only get this.

Warning: require(inc_rate.php) [function.require]: failed to open stream: No such file or directory in /www/110mb.com/s/i/l/v/e/r/m/e/silvermeloco/htdocs/commentpage.php on line 99

Fatal error: require() [function.require]: Failed opening required 'inc_rate.php' (include_path='.:/usr/share/php') in /www/110mb.com/s/i/l/v/e/r/m/e/silvermeloco/htdocs/commentpage.php on line 99

Nothing else, please help me.

Posted by Edwin (http://silvermeloco.110mb.com)on Saturday, 02.3.07 @ 01:42pm | #2751

Great script, the only bug is with the page re-direction, as a few other people have mentioned here. No matter what I try, I cannot fix it. It just hangs on the submission complete page. I've tried several of u the suggested fixes but no joy so far!

Posted by Chino on Thursday, 02.8.07 @ 12:10pm | #2756

Ok, fixed the problem I just mentioned by getting rid of the offending code and placing a link back to the comments page for the user to click on. This has resolved the problem.

Posted by Chino on Friday, 02.9.07 @ 03:19am | #2757

Ok, fixed the problem I just mentioned by getting rid of the offending code and placing a link back to the comments page for the user to click on. This has resolved the problem.

Posted by Chino on Friday, 02.9.07 @ 03:46am | #2758

Great script! however, i'm also having difficulty with the page re-direction. Inserting a link for the user to go back to the specific comments page isn't the best method since you would have to change that link for each comments page you create... any suggestions on a code that will at least link back to the specific page the comment was placed on... Thanks again!!

Posted by Jace on Sunday, 02.11.07 @ 03:23pm | #2761

awesome

Posted by daneil on Monday, 02.12.07 @ 02:46pm | #2763

testing

Posted by joe on Tuesday, 02.13.07 @ 05:19pm | #2764

comments here

Posted by blah (www.blah.com)on Monday, 02.19.07 @ 09:17am | #2767

how do you alter the code that you can see the email from a poster ?

many thx in adv

Posted by ralph on Friday, 02.23.07 @ 05:46am | #2772

how do you alter the code that you can see the email from a poster ?

many thx in adv

Posted by ralph on Friday, 02.23.07 @ 05:50am | #2773

How can we add captcha with different background.

Posted by roxyseoexpert (http://www.mowglitech.com)on Sunday, 02.25.07 @ 11:46am | #2774

ello

Posted by rob (ww)on Monday, 02.26.07 @ 01:34pm | #2776

problem with this script is that
don't can't doesn't show up

but you type
do not cannot doesn not show up

then it's okay....why this problem??

Posted by jack on Thursday, 03.1.07 @ 01:08am | #2778

hi i have a few problems with a script...

1. it always show the same date and same time.. (Wednesday, 12.31.69 @ 19:00pm)
2. when user posts a comment and enters url when i click on their name it takes me to http://mysiteurl.com/user (user who posted comment)

if anyone knows how to solve this 2 problems please write it... thanks in advance!

Posted by what (http://buxari.com)on Friday, 03.9.07 @ 02:36am | #2785

Just what i was looking for

Posted by Chris on Saturday, 03.17.07 @ 05:26am | #2791

Just what i was looking for

Posted by Chris on Saturday, 03.17.07 @ 05:26am | #2792

Just what i was looking for

Posted by Chris on Saturday, 03.17.07 @ 05:27am | #2793

this script works really well, except one thing i could do with some help on...
i am in fact running the php as an include on an .shtml page. so, when it redirects back, after submitting a comment, it is just going directly to the php page. i want it to refresh the actual .shtml page.

hope that makes sense, any help on how to tweak it to work for me would be brilliant. thanks

Posted by andrew (www.step-on.co.uk)on Sunday, 03.18.07 @ 07:29am | #2794

great script. thanks.

Posted by biff on Sunday, 03.18.07 @ 10:40am | #2795

test

Posted by Test on Sunday, 03.18.07 @ 05:25pm | #2796

Hi, I thought I'd let you now the BBCode link below returns a 404 code.

PJ

Posted by ProphetJoe (rodeoofthemind.com)on Tuesday, 03.20.07 @ 01:35pm | #2799

don't

Posted by me on Thursday, 03.29.07 @ 09:12am | #2813

Testing it out.

Posted by Josh on Wednesday, 04.4.07 @ 02:20pm | #2824

Hi,

I was wondering if there was any way you could call up the number of comments on a different page.

e.g
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
(6) comments

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
(13 comments

If anyone could help it would be great!

Ricky

Posted by Ricky (http://www.augmentia.110mb.com/)on Thursday, 04.19.07 @ 03:40am | #2848

Hi,
First, big thanks to Brian for a nice script.:) But I have a problem. My guestbook with this script viewed by mozilla firefox looks good, however if I turn internet explorer on, the whole table is distorted: a lot bigger than I expect... Here, test this page on these two browsers: http://www.poilsiaukime.puslapiai.lt/nauja%20svetaine/sveciams.php
Can anybody tell how this problem could be solved?
Thank you :)

Posted by Martynas on Thursday, 04.19.07 @ 10:44pm | #2851

Does the submit get stuck on a refresh like it does when i test it...?

Posted by roger on Saturday, 04.21.07 @ 09:49pm | #2856

testing

Posted by ted (sdfds)on Sunday, 04.22.07 @ 10:43am | #2859

can anyone tell me why this script adds <a name="post"> to some of my content directly after it?

Posted by grady on Wednesday, 04.25.07 @ 02:11pm | #2860

test

Posted by test (www.url.com)on Monday, 04.30.07 @ 06:42pm | #2862

aaaaasa as asa <html>

Posted by my (336699)on Tuesday, 05.1.07 @ 12:30pm | #2863

Nice script,

check my site -> <a href="http://www.bmxaction.net">http://www.bmxaction.net</a>

Posted by wesley (http://www.bmxaction.net)on Wednesday, 05.2.07 @ 01:30pm | #2864

Nice script,

check my site -> http://www.bmxaction.net

Posted by wesley (http://www.bmxaction.net)on Wednesday, 05.2.07 @ 01:31pm | #2865

Nice script. I needed a quick script for a new web site, and this one really did the trick with minor modification!

This is simple, easy to use, and hard to believe its been around since 2004!!

Thanks,

See it in action at: http://www.nappy-headedho.com/

Posted by techno_blaster (http://www.bjc-computer-services.com)on Friday, 05.4.07 @ 06:54am | #2866

а/;з/;з/;з/;з/; а/;з/;з/;з/;з/; а/;з/;з/;з/;з/; а/;з/;з/;з/;з/;

Posted by азззз (http://imodels.tv)on Monday, 05.7.07 @ 12:32pm | #2868

Just testing as well. :)

Posted by World of Warcraft Blue Tracker (www.WoWBlues.Com)on Wednesday, 05.9.07 @ 11:47am | #2870

Just testing as well. :)

Posted by World of Warcraft Blue Tracker (www.WoWBlues.Com)on Wednesday, 05.9.07 @ 11:49am | #2871

test'

Posted by test (none)on Wednesday, 05.9.07 @ 01:15pm | #2872

'")/; echo strtoupper("

Posted by test (none)on Wednesday, 05.9.07 @ 01:20pm | #2873

adsfasdf

Posted by asdf (asdf)on Tuesday, 05.15.07 @ 02:34am | #2877

WOW nice

Posted by ddd on Thursday, 05.17.07 @ 02:28am | #2885

help im noob.

What Am I need to write in 'url' , it pop up error message #1046 - No database selected ? ?What I need to write in there??? thx

CREATE TABLE `comments` (
`commentid` int(11) NOT NULL auto_increment,
`tutorialid` int(11) NOT NULL default '0',
`name` text NOT NULL,
`url` text NOT NULL, <===error #1046 - No database selected
`comment` text NOT NULL,
`email` text NOT NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`commentid`),
KEY `tutorialid` (`tutorialid`)
)

Posted by need some help! on Thursday, 05.17.07 @ 01:58pm | #2886

i'm going to try it

Posted by fake on Thursday, 05.17.07 @ 06:52pm | #2887

i'm going to try it

Posted by fake (www.yahoo.com)on Thursday, 05.17.07 @ 06:53pm | #2888

Just testing to see what the user experience is for this script.

Posted by John Rambo (liquidchannel.com)on Monday, 05.21.07 @ 04:09pm | #2891

what we will do to change our cursors?,please change it in tagalog..............tnx.....

Posted by patricia bagalawis on Tuesday, 05.22.07 @ 09:45pm | #2893

Very nice, thank you 4 da tutorial. next thing is to add some Ajax features!

Posted by vasile (http://url.com)on Friday, 05.25.07 @ 05:34am | #2896

A while back someone asked if you could change the "posted by ....." to above the comment.
Im trying to do this too, and ive been playing around with it for a while and all i get is an error message. Can anyone help with that?

Posted by Jono on Sunday, 05.27.07 @ 04:37am | #2902

this is a test <text>

aaaa

Posted by james on Sunday, 06.3.07 @ 03:06am | #2912

this is a test <text>

aaaa

Posted by james on Sunday, 06.3.07 @ 03:08am | #2913

sorry, test again

LOOK AT ME!

this would output LOOK AT ME!

Posted by james on Sunday, 06.3.07 @ 03:36pm | #2914

For some odd reason, I can't use apostrophes on my comment forms. They won't post.

Posted by Mac (http://www.mustachemayhem.com)on Friday, 06.8.07 @ 08:08am | #2917

Many thanks for this excellent script. I have already started using it.

Posted by Per-Gunnar Ostby (www.pgoimages.com)on Wednesday, 06.13.07 @ 07:48am | #2921

test

Posted by test on Thursday, 06.14.07 @ 03:07am | #2922

effing spammers!

testing, looks like a great script. Can't wait to try it out.

Is this "captcha" included?

Posted by lala on Thursday, 06.14.07 @ 11:05am | #2923

For anyone still stuck on the refresh page problem heres how I solved it.
REPLACE THIS CODE:
</table>
<input type="hidden" name="tuturl" value="" />
<input type="hidden" name="tutid2" value="1" />
</form>

WITH THIS CODE:
</table>
<input type="hidden" name="tuturl" value="NAME OF YOUR COMMENTS PAGE" />
<input type="hidden" name="tutid2" value="1" />
</form>

Posted by Dave P on Saturday, 06.16.07 @ 07:14pm | #2924

To delete a comment::::

Code:

<?php

/*
* Change the first line to whatever
* you use to connect to the database.
*
* Change tablename to the name of your
* database table.
*
* This example would delete a row from
* a table based on the id of the row.
* You can change this to whatever you
* want.
* You would need a login system, and simply make an (if admin then echo '<a href="del.php?com=[comment id]"/;'/;
*/
$pid = $_GET["com"]/;
$dbh=mysql_connect ("localhost", "username", "pass") or die ('I cannot connect to the database because: ' . mysql_error())/;
mysql_select_db ("dbname")/;
// Your database connection code
//db_connect()/;

$query = "DELETE FROM comments WHERE commentid = ('$pid')"/;

$result = mysql_query($query)/;

echo "The data has been deleted."/;

?>

Posted by warallthetm (http://www.thetutorialhost.net)on Wednesday, 06.27.07 @ 11:29am | #2932

To delete a comment::::

Code:

<?php

/*
* Change the first line to whatever
* you use to connect to the database.
*
* Change tablename to the name of your
* database table.
*
* This example would delete a row from
* a table based on the id of the row.
* You can change this to whatever you
* want.
* You would need a login system, and simply make an (if admin then echo '<a href="del.php?com=[comment id]"/;'/;
*/
$pid = $_GET["com"]/;
$dbh=mysql_connect ("localhost", "username", "pass") or die ('I cannot connect to the database because: ' . mysql_error())/;
mysql_select_db ("dbname")/;
// Your database connection code
//db_connect()/;

$query = "DELETE FROM comments WHERE commentid = ('$pid')"/;

$result = mysql_query($query)/;

echo "The data has been deleted."/;

?>

Posted by warallthetm (http://www.thetutorialhost.net)on Wednesday, 06.27.07 @ 11:29am | #2933

eh?

Posted by bob on Thursday, 07.5.07 @ 07:48pm | #2938

The Best script!!! Few days I've been searching some comprehensive and simple script and at last I've found the thing!!!

Very many thanks to Brian Zimmer!!!

p.s. Can anyone suggest how to make an image verification for posting a comment? Just like down there in the form. Thanks.

Posted by Sound God (http://promo.extreme-stream.org)on Thursday, 07.12.07 @ 03:42am | #2939

Testing

Posted by KK on Sunday, 07.15.07 @ 08:13pm | #2940

Testing

Posted by KK on Sunday, 07.15.07 @ 08:16pm | #2941

good script

Posted by mahavir (http://www.clickemoney.com)on Tuesday, 07.17.07 @ 09:13am | #2942

hello nice script, i have a question: is there an admin panel for this script where in the admin can aprove and disapprove the comments posted...

Posted by chriz on Wednesday, 07.18.07 @ 01:02pm | #2944

test

Posted by test on Thursday, 07.19.07 @ 08:03pm | #2945

Mr. Zimmer, How did you integrate the catpcha security image with this form. Where are the scripts and source files for it?


John

Posted by John on Thursday, 07.19.07 @ 08:13pm | #2946

thanks this is awesome ill use that

Posted by busman (http://www.runescape-media.net)on Sunday, 07.22.07 @ 11:51am | #2947

thanks this is awesome ill use that

Posted by busman (http://www.runescape-media.net)on Sunday, 07.22.07 @ 11:52am | #2948

nice site

Posted by chris (www.propertysky.com)on Monday, 07.23.07 @ 03:07am | #2950

Test :)

Posted by Kewl (http://www.site.com)on Wednesday, 07.25.07 @ 03:20pm | #2952

Cool scripts!

Posted by debod on Thursday, 07.26.07 @ 06:50am | #2953

Cool scripts!

Posted by debod on Thursday, 07.26.07 @ 06:50am | #2954

Very helpfull.

Posted by Zen on Thursday, 07.26.07 @ 06:54am | #2955

test

Posted by testname (testurl)on Thursday, 07.26.07 @ 07:59am | #2956

GREAT SCRIPT! One Question!

Can Someone Please explain easily and clearly, how to Delete or Edit a comment??? Some people said do it in myphpAdmin... but please explain how to do it... please? anyone?
=)

Posted by dc (http://www.msfbasketball.com)on Sunday, 07.29.07 @ 08:17am | #2957

Chinese furniture, orientantique.com -exporter, manufacturer Asian antique furniture, carving, home supply craft, gifts, tribal handicraft, paintings, porcelain,rustic items, oriental curio, Asian home decoration, classical reproduction furniture.

We are looking for dealers around the world to make a profitable business on both sides! We will offer you quality goods restored or produced by our experienced craftsmen. We also have rich experience in cooperating with our internationl wholesalers and buyers. Importers, wholesalers, distributors, agents, and shop or web owners are our targeted customers.

With only about US$7000 to US$10000 investment plus circa US$1000 to US$2500 sea shipping cost you can start your antique and reproduction furniture business immediately with us.
Our items include:
Chinese furniture, eastern antique furniture, antique chinese furniture, asian jewelry, chinese antique furniture, chinese antiques, chinese antiques, chinese artworks, handmade crafts, Chinese handicrafts, wooden statue, carvings, carving, antique furniture, sideboards, Chinese sideboards, oriental sideboard, oriental furniture, asian furniture, chinese antiques, asian antique furniture, antique furniture, asian antique furniture, Ming lamp/; Qing antique Chinese furniture, Minguo furniture, main supplier for Chinese antique furniture importer, importers, good source of Chinese antique furniture, Asian furniture, chinese furniture, consumable, consumables, textiles, fabrics, clothing, garment, fashion, Tibetan, Mongolian, Chinese minority antique furniture, Tribal furniture, rustic national furniture, decorated items, village style furniture, Tea Tables, Desks, Chinese furniture, Chinese country furniture, coffee table, asian coffee table, oriental coffee table, chinese porcelain, chinese dining room sets, jewelry, Chinese cabinets, TV cabinet, dining room sets, Chinese cabinets, Altar tables, Asian antiques, Chinese Cabinets, Altar tables, Asian Antiques, asian coffee table, coffee table, TV cabinet, oriental antique furniture, oriental furniture, oriental antiques, TV cabinet, cabinets, Medcine cabinet, oriental sideboard, wholesale Chinese antique furniture, Oriental antique furniture, oriental furniture, Chinese coffee table, Chinese large cabinets Shanxi, Beijing, wenzho Shanghai, Hebei, Shandong, Guangdong, Fujian, Linhai, Shangyu, Ningbo, Gansu, Jiangxi, antique Chinese furniture, curio, classical Chinese furniture Asian antique furniture, chinese furniture, chinese antiques, Asian antique furniture, Oriental antique furniture, Asian furniture, etc.

We will be glad to get your enquiry via our web form which will be sent to our email.

Can not find what you want? Inform us and we can source around China based on our profound sourcing teams.

Contact us at: http://www.orientantique.com/contactus/contactus.asp
--------------------------------------------------------------------------------------
1Stop Orient Antique Inc.
http://www.orientantique.com
http://www.antiquescn.com

Posted by orientantique (http://www.orientantique.com)on Sunday, 07.29.07 @ 07:56pm | #2958

Chinese furniture antiquescn.com exporter, wholesaler, manufacturer in Chinese antiques, antique furniture, ceramics, porcelain, stone statue, Asian home decoration, carving, eastern handmade crafts, gifts, tribal handicraft, folk art, oriental curio, classical reproduction furniture.
Chinese antiques, Chinese antique furniture, Ming & Qing style furniture, porcelain, carving, statue, oriental antique furniture, antique Chinese furniture, Chinese traditional furniture, classical rustic style furniture, reproductions, reproduction furniture, Tibetan, jewelry, Asian antiques, accessories, folk art, Asian paintings, eastern crafts, orient crafts, house ware, Chinese antiques, traditional antique Chinese furniture, home and garden supplies, Chinese gift, gifts, solid wood, hard wood, consumable, terracotta, Buddha, decoration, Crafts.

We can also do western style furniture and customized furniture as per your design and specification, effect, color, etc.

We are looking for dealers around the world to make a profitable business on both sides. We will offer you quality goods restored or produced by our experienced craftsmen. We also have rich experience in cooperating with our internationl wholesalers. Importers, wholesalers, distributors, agents, and shop or web owners are our targeted customers. We'll do whatever we can to help you make profit by selling our products. We know that our cooperation is based on your success in this booming business.
-----------------------------------
FY Chinese Antiques & Crafts
Mandarine Furniture & Housewares Manufacturing Inc.
http://www.antiquescn.com
http://www.orientantique.com
http://www.orientantiques.com

Posted by antiquescn (http://www.antiquescn.com)on Sunday, 07.29.07 @ 07:56pm | #2959

Chinese furniture antiquescn.com exporter, wholesaler, manufacturer in Chinese antiques, antique furniture, ceramics, porcelain, stone statue, Asian home decoration, carving, eastern handmade crafts, gifts, tribal handicraft, folk art, oriental curio, classical reproduction furniture.
Chinese antiques, Chinese antique furniture, Ming & Qing style furniture, porcelain, carving, statue, oriental antique furniture, antique Chinese furniture, Chinese traditional furniture, classical rustic style furniture, reproductions, reproduction furniture, Tibetan, jewelry, Asian antiques, accessories, folk art, Asian paintings, eastern crafts, orient crafts, house ware, Chinese antiques, traditional antique Chinese furniture, home and garden supplies, Chinese gift, gifts, solid wood, hard wood, consumable, terracotta, Buddha, decoration, Crafts.

We can also do western style furniture and customized furniture as per your design and specification, effect, color, etc.

We are looking for dealers around the world to make a profitable business on both sides. We will offer you quality goods restored or produced by our experienced craftsmen. We also have rich experience in cooperating with our internationl wholesalers. Importers, wholesalers, distributors, agents, and shop or web owners are our targeted customers. We'll do whatever we can to help you make profit by selling our products. We know that our cooperation is based on your success in this booming business.
-----------------------------------
FY Chinese Antiques & Crafts
Mandarine Furniture & Housewares Manufacturing Inc.
http://www.antiquescn.com
http://www.orientantique.com
http://www.orientantiques.com

Posted by antiquescn (http://www.antiquescn.com)on Sunday, 07.29.07 @ 07:57pm | #2960

Testing :P

Posted by Gravy on Tuesday, 07.31.07 @ 07:11am | #2962

GREAT SCRIPT!!!!!!!!!!!!!
One thing:


How do you change the font color inside the text boxes like this one?

Posted by Dan (http://djhvisualarts.awardspace.com/)on Saturday, 08.4.07 @ 02:14am | #2963

To order the list by newest posts first, find the line:

$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date") or die(mysql_error())/;
And replace it with:
$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date DESC") or die(mysql_error())/;





where is this found? e-mail me at dj_pod@hotmail.co.uk please thanks.

Posted by sean (http://www.whatsthatvehicle.com)on Wednesday, 08.8.07 @ 11:40am | #2965

i found that out is there anyway i can intergrate a rating script?
e-mail me:dj_pod@hotmail.co.uk

Posted by sean (http://www.whatsthatvehicle.com)on Wednesday, 08.8.07 @ 12:10pm | #2966

I just to check what the fuck is this. Does this shit work?

Posted by Mkundu (www.uboo.com)on Tuesday, 08.14.07 @ 05:15am | #2968

test

Posted by test (test)on Wednesday, 08.15.07 @ 01:55pm | #2969

Life is kinda funny huh?
www.google.com

Posted by Lance on Wednesday, 08.15.07 @ 11:38pm | #2970

Life is kinda funny huh?
www.google.com

Posted by Lance on Wednesday, 08.15.07 @ 11:41pm | #2971

aaaaaaaaaaaaaaaaaaaaaaaaaa

Posted by test on Thursday, 08.16.07 @ 10:25am | #2974

To order the list by newest posts first, find the line:

$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date") or die(mysql_error())//;
And replace it with:
$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date DESC") or die(mysql_error())//;

i didint understand what you mean?

http://www.gazetegazetesi.com
http://www.sitesitesi.ner

Posted by bora (http://www.sitesitesi.net)on Thursday, 08.16.07 @ 04:12pm | #2975

To order the list by newest posts first, find the line:

$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date") or die(mysql_error())///;
And replace it with:
$commentquery = mysql_query("SELECT * FROM comments WHERE tutorialid='$tutid' ORDER BY date DESC") or die(mysql_error())///;

i didint understand what you mean?

http://www.gazetegazetesi.com
http://www.sitesitesi.net

Posted by bora (http://www.sitesitesi.net)on Thursday, 08.16.07 @ 04:14pm | #2976

Excellent script except for the redirecting.
Doesn't anyone know how to get it to work?

It fits me perfectly, but I can't figure it out how to get directed to the comment site.

Posted by Simon (http://fashiondreams.se)on Friday, 08.17.07 @ 02:16am | #2977

Well...

Posted by TS on Friday, 08.17.07 @ 11:26am | #2978

I keep on having the problem with the following error

Parse error: syntax error, unexpected '*' in /home/leslie/public_html/caprage/stones/inc_rate.php on line 12

my database info is

$db_hostname = "localhost"/; be default"
$db_username = "leslie_leslie"/;
$db_pass = "21oct82"/;
$db_name = "leslie_stones"/;

Posted by saki (caprage.novalarps.org)on Saturday, 08.18.07 @ 04:31pm | #2980

nice

Posted by art on Saturday, 08.18.07 @ 05:39pm | #2981

This is great.
A problem I'm having though is that the # of the comment skips around. The first one I had was #1 and the second was #69.

Also the redirect after a comment doesn't work.

THANKS

Posted by Allan (www.verbality.net)on Tuesday, 08.21.07 @ 11:38am | #2983

kkt pe batz ca mere ca pula

Posted by muja on Wednesday, 08.22.07 @ 07:42am | #2984

Car Tuning
Street Racing Videos

Posted by sergiu on Wednesday, 08.22.07 @ 08:08am | #2985

Car Tuning
Street Racing Videos

Posted by sergiu on Wednesday, 08.22.07 @ 08:11am | #2986

Car Tuning
Street Racing Videos

Posted by sergiu on Wednesday, 08.22.07 @ 08:11am | #2987

teste

Posted by fff on Thursday, 08.23.07 @ 06:17am | #2989

Thanks Dear !
Http://nrs-co.ir ~> DarkArt
http://Dorna.co.ir ~> Pro Web Hosting
http://iranbin.com ~> Book Information Network

Posted by nrs-co.ir (http://nrs-co.ir)on Monday, 08.27.07 @ 04:17am | #2991

test

Posted by rtewte (wer)on Monday, 08.27.07 @ 08:31am | #2992

this is a very good scripts

Posted by meedfox on Monday, 08.27.07 @ 09:15am | #2993

awesome

Posted by

test
on Wednesday, 08.29.07 @ 03:10am | #2996

can you help stripslashes the Name: please.
its vulnerable.

Posted by rafi on Wednesday, 08.29.07 @ 03:13am | #2997

sfasfasf

Posted by hans (ah)on Friday, 08.31.07 @ 09:34pm | #3001

sfasfasf

Posted by hans (ah)on Friday, 08.31.07 @ 09:34pm | #3002

I'm also having problems having the URL refresh, and multiple submisions to the database. The tuturl variable dosen't seem to ever get a value, so it dosen't go to that page. Any suggestions as to what we're doing wrong?

Posted by Brad on Wednesday, 09.5.07 @ 04:17pm | #3010

北/;京/;时/;间/;昨/;日/;上/;午/;1/;1/;时/;5/;0/;分/;,/;意/;大/;利/;著/;名/;男/;高/;音/;帕/;瓦/;罗/;蒂/;因/;胰/;脏/;癌/;在/;家/;病/;逝/;,/;享/;年/;7/;1/;岁/;。/;帕/;瓦/;罗/;蒂/;被/;许/;多/;人/;誉/;为/;他/;那/;一/;代/;最/;伟/;大/;男/;高/;音/;。/; 帕/;瓦/;罗/;蒂/;喜/;爱/;美/;食/;且/;吨/;位/;惊/;人/;,/;2/;0/;0/;6/;年/;7/;月/;帕/;瓦/;罗/;蒂/;被/;证/;实/;患/;上/;胰/;脏/;癌/;,/;此/;后/;他/;的/;健/;康/;情/;况/;就/;一/;直/;很/;不/;理/;想/;。/;在/;一/;年/;多/;前/;接/;受/;了/;胰/;脏/;癌/;的/;手/;术/;治/;疗/;,/;之/;后/;又/;接/;受/;过/;至/;少/;五/;次/;的/;化/;疗/;。/; 今/;年/;8/;月/;,/;帕/;瓦/;罗/;蒂/;再/;度/;因/;发/; ...报/;讯/;将/;于/;10月/;18日/;至/;11月/;18日/;举/;行/;的/;第/;九/;届/;中/;国/;上/;海/;国/;际/;艺/;术/;节/;,/;昨/;天/;宣/;布/;,/;已/;基/;本/;确/;定/;参/;演/;的/;中/;外/;剧/;节/;目/;将/;在/;金/;秋/;十/;月/;为/;沪/;上/;观/;众/;献/;上/;一/;台/;丰/;盛/;的/;艺/;术/;盛/;宴/;。/;经/;过/;多/;年/;的/;“筑/;巢/;引/;凤/;”,/;中/;国/;上/;海/;国/;际/;艺/;术/;节/;已/;然/;成/;为/;海/;内/;外/;艺/;术/;院/;团/;和/;大/;师/;明/;星/;心/;驰/;神/;往/;的/;艺/;术/;盛/;会/;。/;据/;介/;绍/;,/;本/;届/;艺/;术/;节/;已/;吸/;引/;到/;中/;外/;名/;团/;大/;师/;的/;55台/;节/;目/;,/;其/;中/;包/;括/;“欧/;洲/;十/;大/;交/;响/;乐/;团/;之/;一/;”的/; ...

Posted by wrr on Thursday, 09.6.07 @ 12:44pm | #3011

BUSY BIZ PLASMA TV LIMITED.
NEW PLASMA TV - UNBEATABLE PRICES WE ARE CERTIFIED WHOLESALERS OF
VARIOUS PLASMA TV AT VERY AFFORDABLE PRICES ATTACH IS OUR VERY
CURRENT PRICE LIST OF PLASMA TV FOR YOUR REFERENCE ALL PLASMA TV ARE
BRAND NEW THE KINDS OF PLASMA TV ARE LISTED BELOW:


EMAIL...mgmt192@yahoo.com
EMAIL...mgmt192@hotmail.com

PLASMA TV
Panasonic TH-42PD50U TH42PD50U 42" Plasma TV 852 x 480 ----- $550
HP PL4245N 42" HDTV-Ready Plasma TV ----- $620
Samsung SPR4232 42" Flat Panel EDTV Plasma TV ----- $510
Samsung HPR4252 42" High Definition Plasma TV ----- $510
Samsung PPM42S 42" Inch HDTV Black Plasma TV ----- $530
Panasonic TH-42PX50U/P TH42PX50U/P 42" Viera Plasma TV ----- $520
Samsung HP-R5052 50" Plasma TV ----- $610
Samsung SPN-4235 Flat Panel 42-inch Plasma TV ----- $350
SVA 42" Plasma TV (852x480/; 16) 550:1, 480i/480p/720p ----- $450
Hitachi CMP-420V2 42 inch EDTV Plasma TV in Silver ----- $400
Panasonic TH-50PX50U 50" High Definition Plasma TV ----- $600
Philips - 50PF7320A - Philips 50" HDTV Ready Wide SCRN ----- $485
Optoma PD50 50-Inch 1366 x 768 3000:1 Contrast ----- $470
Panasonic TH-42PX500U 42"" HDTV Plasma TV ----- $500
Toshiba 42HP95 42"w Integrated HD Plasma TV ----- $500
Sharp PZ-43HV2U 43" High Definition Plasma TV ----- $800
Gateway 42" Plasma TV 16 : 9 Aspect Ratio ----- $450
Samsung HPR5052 50 High Definition Plasma TV ----- $800
Vizio P42HDe 42" 1024 x 768 5000:1 Contrast ----- $460
Samsung SPP4251 42" Plasma TV 16 852x480 Resolution ----- $490

Posted by Smith on Friday, 09.7.07 @ 10:14pm | #3012

Hi. how could i use this script to multiple pages.

Posted by Fahad (fahdi.net)on Monday, 09.10.07 @ 03:32am | #3013

sccs

Posted by scsc (csc)on Sunday, 09.16.07 @ 12:13pm | #3020

Test

Posted by Test on Wednesday, 09.19.07 @ 03:11pm | #3023

Nice work...

Posted by JK on Thursday, 09.20.07 @ 04:13pm | #3025

this is a test

Posted by test on Thursday, 09.20.07 @ 05:19pm | #3026

When creating the database, what do I put for this:

What type should i use for 'Primary key' and 'Key?'
And where do I put commentid and tutorlalid?

PRIMARY KEY (`commentid`),
KEY `tutorialid` (`tutorialid`)
)

Posted by Dave on Thursday, 09.27.07 @ 10:37am | #3030

Sooo how do you make the comments go onto another page after 10 comments

Posted by Pottrell on Thursday, 09.27.07 @ 04:54pm | #3031

Testing Submission - blah blah blah

Posted by Frank Rizzo on Sunday, 09.30.07 @ 11:39pm | #3033

Testing Submission - blah blah blah

Posted by Frank Rizzo on Sunday, 09.30.07 @ 11:39pm | #3034

asdfasdf asdf asdf asd fas
df asdfas dfas dfas df
asdfa
sd f

Posted by asdf (www.asdf.com)on Monday, 10.1.07 @ 09:48pm | #3035

I am having a problem with this. i dont really know much about MySQL but i tried doing this myself. i Downloaded all the stuff and this is what i got...

www.artisticalliance.org/comment/testpage.php

can some one help me? i dont see how this test page work.

Posted by art (artisticalliance.org)on Thursday, 10.4.07 @ 07:59pm | #3036

sqfffffffffffffffffffffffffffffffffffffffffff

Posted by esqfefsef on Saturday, 10.6.07 @ 07:38pm | #3037

sqfffffffffffffffffffffffffffffffffffffffffff

Posted by esqfefsef on Saturday, 10.6.07 @ 07:39pm | #3038

sqfffffffffffffffffffffffffffffffffffffffffff

Posted by esqfefsef on Saturday, 10.6.07 @ 07:39pm | #3039

sqfffffffffffffffffffffffffffffffffffffffffff

Posted by esqfefsef on Saturday, 10.6.07 @ 07:39pm | #3040

浅/;さ/;さ/;笹/;笹/;笹/;田/;駄/;々/;駄/;々/;dふ/;ぁ/;ふ/;ぁ/;ふ/;ぁ/;ふ/;ぁ/;ふ/;ぁ/;fが/;画/;が/;画/;ghが/;っ/;は/;う/;ひ/;あ/;ひ/;あ/;は/;k/;h/;か/;h/;k/;は/;k/;g/;か/;g/;じ/;ゃ/;っ/;が/;が/;

Posted by bla bla bla on Friday, 10.12.07 @ 10:19am | #3042

浅/;さ/;さ/;笹/;笹/;笹/;田/;駄/;々/;駄/;々/;dふ/;ぁ/;ふ/;ぁ/;ふ/;ぁ/;ふ/;ぁ/;ふ/;ぁ/;fが/;画/;が/;画/;ghが/;っ/;は/;う/;ひ/;あ/;ひ/;あ/;は/;k/;h/;か/;h/;k/;は/;k/;g/;か/;g/;じ/;ゃ/;っ/;が/;が/;

Posted by bla bla bla on Friday, 10.12.07 @ 10:19am | #3043

OK...this whole issue with the redirect was driving me nuts and nobody seemed to really address the issue. I think I figured it out...at least it has worked for me. You need to make a subtle change to the following code:

Original Code:
<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

Change To:
<?php
require('../lib/comments.class.php')/;
getComments("1")/;
submitComments("1",$_SERVER["PHP_SELF"])/;
?>

Hope this helps...good luck.

Posted by sivlE35 on Tuesday, 10.16.07 @ 08:56am | #3046

Whoops...regarding my last post...the line

require('inc_rate.php')//;

should not be changed..i did some renaming of files and put them in a different directory for my own use

Sorry for any confusion. Also, just to clarify, the issue was addressed earlier, but there was not a solution posted that worked for me, whereas this one did.

Posted by sivle35 on Tuesday, 10.16.07 @ 10:36am | #3047

<object width="425" height="353"><param name="movie" value="http://www.youtube.com/v/fjEdkWCj8ac&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/fjEdkWCj8ac&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="353"></embed></object>

Posted by santiago on Tuesday, 10.16.07 @ 04:58pm | #3048

Test

Posted by Mew on Thursday, 10.18.07 @ 03:33pm | #3052

This is a test. "Yan Can Cook. So can you."

Posted by John Doe (www.jd.com)on Thursday, 10.18.07 @ 03:59pm | #3053

test

Posted by test on Thursday, 10.18.07 @ 04:17pm | #3054

is there a way to call this on a blank page:

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

with a image button?
when you click the button it goes to a new page instead of having many comment boxes on a single page.

Posted by needhelp on Saturday, 10.20.07 @ 06:46am | #3055

Testing spam filtering

Posted by Test (http://www.viagra.ru)on Monday, 10.22.07 @ 04:40am | #3056

esto es una prueba de comentario

Posted by Daniel (www.monteselvaecuador.com)on Tuesday, 10.23.07 @ 02:21pm | #3058

My comment here

Posted by J on Thursday, 10.25.07 @ 12:19pm | #3059

zxxxxxxxxxxxxxxxxxxxxxxxzzzzzzzzzzz<<<<xxxxxxxxxxxxxxxxxxxxxx

Posted by yumink lisbeht ramos tapia on Thursday, 10.25.07 @ 06:39pm | #3060

how do i change the font size of Name, Email, URL?

Posted by how (how)on Friday, 10.26.07 @ 08:51am | #3061

test

Posted by asdfasdf on Saturday, 10.27.07 @ 05:06am | #3062

I keep getting this error. can you help me out please

Warning: mysql_connect(): Can't connect to local MySQL server through socket '/usr/local/mysql-5.0/data/mysql.sock' (2) in /home/content/s/p/l/splitendz/html/inc_rate.php on line 12
I cannot connect to the database because: Can't connect to local MySQL server through socket '/usr/local/mysql-5.0/data/mysql.sock' (2)

Posted by Robert on Sunday, 10.28.07 @ 06:59pm | #3064

dear sir,, thank you about your script ( comment ) please can you make a new script with admin? and can we use the bb cod (( smiles or some icons for fun ) ? please if you can make a new script and let us download it ,,

thank you so much

Posted by malek (http://www.ncdclub.com)on Thursday, 11.1.07 @ 03:30am | #3065

Looks cool
testing

Posted by joe (http://www.maniacomputer.com)on Friday, 11.2.07 @ 09:48pm | #3066

Looks cool
testing

Posted by joe (http://www.maniacomputer.com)on Friday, 11.2.07 @ 09:50pm | #3067

thnks

Posted by hydscott (http://yahoo.com)on Wednesday, 11.7.07 @ 12:04pm | #3068

Looks good. Thank you for sharing.

Posted by RIck on Friday, 11.9.07 @ 07:23am | #3070

test

Posted by Suzy on Friday, 11.9.07 @ 01:10pm | #3071

hi will try this on my site.

Posted by oz on Friday, 11.9.07 @ 02:34pm | #3072

Thanks! ToTaLLYW00P!

Posted by Joe on Friday, 11.16.07 @ 12:49pm | #3076

just a test

Posted by test on Monday, 11.19.07 @ 11:09pm | #3077

just a test

Posted by test on Monday, 11.19.07 @ 11:11pm | #3078

just a test

Posted by test on Monday, 11.19.07 @ 11:11pm | #3079

just a test

Posted by test on Monday, 11.19.07 @ 11:11pm | #3080

just a test

Posted by test on Monday, 11.19.07 @ 11:12pm | #3081

ldfn lsdkfn lsdnf lsdn

Posted by Alen (www.test.com)on Friday, 11.23.07 @ 07:29am | #3083

ldfn lsdkfn lsdnf lsdn

Posted by Alen (www.test.com)on Friday, 11.23.07 @ 07:30am | #3084

ldfn lsdkfn lsdnf lsdn

Posted by Alen (www.test.com)on Friday, 11.23.07 @ 07:30am | #3085

hi je

Posted by ammar (www.sex.com)on Saturday, 11.24.07 @ 12:49am | #3091

Test, Test

Posted by Test on Sunday, 11.25.07 @ 10:30am | #3092

Test, Test

Posted by Test on Sunday, 11.25.07 @ 10:30am | #3093

GFFGGGGFG

Posted by HGHG on Tuesday, 11.27.07 @ 04:42am | #3095

GFFGGGGFG

Posted by HGHG on Tuesday, 11.27.07 @ 04:42am | #3096

GFFGGGGFG

Posted by HGHG on Tuesday, 11.27.07 @ 04:43am | #3097

want to see if this can leave links

Posted by bob (www.google.com)on Wednesday, 11.28.07 @ 04:11am | #3098

want to see if this can leave links

Posted by bob (www.google.com)on Wednesday, 11.28.07 @ 04:11am | #3099

blah blah blah.

Posted by me on Wednesday, 11.28.07 @ 04:19pm | #3101

just a test

Posted by test on Monday, 11.19.07 @ 11:09pm | #3077

just a test

Posted by test on Monday, 11.19.07 @ 11:11pm | #3078

just a test

Posted by test on Monday, 11.19.07 @ 11:11pm | #3079

just a test

Posted by test on Monday, 11.19.07 @ 11:11pm | #3080

just a test

Posted by test on Monday, 11.19.07 @ 11:12pm | #3081

ldfn lsdkfn lsdnf lsdn

Posted by Alen (www.test.com)on Friday, 11.23.07 @ 07:29am | #3083

Posted by Test (http://test.com)on Wednesday, 11.28.07 @ 08:07pm | #3102

jfhjh

Posted by jhf (jhf)on Thursday, 11.29.07 @ 06:24am | #3103

test

Posted by Name (www.email.com)on Saturday, 12.1.07 @ 07:43am | #3104

test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test
test

Posted by namenamename (sadsad)on Saturday, 12.1.07 @ 07:44am | #3105

I'm just testing out, I might get this instead of a guestbook :)

Posted by Criss Seregni (http://www.fyasiouyf.com)on Sunday, 12.2.07 @ 02:05pm | #3106

I'm just testing out, I might get this instead of a guestbook :)

Posted by Criss Seregni (http://www.fyasiouyf.com)on Sunday, 12.2.07 @ 02:05pm | #3107

This looks superb!

Posted by Dave H on Monday, 12.3.07 @ 01:10pm | #3108

Cool!

Posted by Ynork (http://www.ynorksite.net)on Saturday, 12.8.07 @ 08:25pm | #3110

,

Posted by , (,)on Sunday, 12.9.07 @ 11:09pm | #3111

Thanks

Posted by bramac (http://www.epitoanyagkereskedes.hu/bramac.html)on Monday, 12.10.07 @ 02:46am | #3112

Cool, this looks great, now all it needs is an extra row for "page" in the database and to pull the url the comment is on to put in that row.

Posted by TP on Monday, 12.10.07 @ 01:07pm | #3113

Cool, this looks great, now all it needs is an extra row for "page" in the database and to pull the url the comment is on to put in that row.

Posted by TP on Monday, 12.10.07 @ 01:07pm | #3114

Nicee

Posted by yuri on Wednesday, 12.12.07 @ 01:53pm | #3116

WOW!

Posted by Maffy on Wednesday, 12.12.07 @ 02:34pm | #3117

<span style="font-size: 12px"><span style="color: red"><span class="bold">LOOK AT ME!</span>

Posted by Wendy on Wednesday, 12.12.07 @ 02:48pm | #3118

<p>sorry, test again<br />
<br />
<span style="font-size: 150px"><span style="color: red"><span class="bold">LOOK AT ME!</span></span></span><br />
<br />
this would output LOOK AT ME!<br />
</p>

Posted by hgd on Wednesday, 12.12.07 @ 02:51pm | #3119

WCG Prueba

Posted by Williams on Thursday, 12.13.07 @ 07:12am | #3121

There is a lot of information and looks pretty straight forward. I gotta test this one out. It looks really cool.

Posted by John Doe (mysite.com)on Saturday, 12.15.07 @ 01:10am | #3122

There is a lot of information and looks pretty straight forward. I gotta test this one out. It looks really cool.

Posted by John Doe (mysite.com)on Saturday, 12.15.07 @ 01:12am | #3123

how long can the comment be? how many characters? 1 how long can the comment be? how many characters? 2 how long can the comment be? how many characters? 3 how long can the comment be? how many characters? 4 how long can the comment be? how many characters? 5 how long can the comment be? how many characters? 6 how long can the comment be? how many characters? 7 how long can the comment be? how many characters? 8 how long can the comment be? how many characters? 9 how long can the comment be? how many characters? 10 how long can the comment be? how many characters? 11 how long can the comment be? how many characters? 12 how long can the comment be? how many characters? 13 how long can the comment be? how many characters? 14 how long can the comment be? how many characters? 15 how long can the comment be? how many characters? 16

Posted by Tester1 (tester1.com)on Saturday, 12.15.07 @ 12:30pm | #3124

This is so smartly done... I have been looking for something like this. But this is simpler than anything I have seen. Only 3 lines of codes to add comments to a php page. All you have to do is change the page ID.
Great Job.
Thank you.

Posted by abidjantalk (www.abidjantalk.com)on Saturday, 12.15.07 @ 07:26pm | #3125

This is so smartly done... I have been looking for something like this. But this is simpler than anything I have seen. Only 3 lines of codes to add comments to a php page. All you have to do is change the page ID.
Great Job.
Thank you.

Posted by abidjantalk (www.abidjantalk.com)on Saturday, 12.15.07 @ 07:27pm | #3126

This is so smartly done... I have been looking for something like this. But this is simpler than anything I have seen. Only 3 lines of codes to add comments to a php page. All you have to do is change the page ID.
Great Job.
Thank you.

Posted by abidjantalk (www.abidjantalk.com)on Saturday, 12.15.07 @ 07:28pm | #3127

Cunrui Leather Jackets on Sale
Super Prices: $30 Producing leather jackets, coats, blazers, trousers, vests and any other cool leather products all the year around. MOQ=100pcs Factory: Cunrui Clothing & Leather Products Co., Ltd., Xiangtan City, HN, P.R.China (www.hncunrui.com) MSN:hncunrui@msn.com Email:122160453@qq.com(Phil Beckett) Single sample retail directly from Cunrui Factory is available!! Welcome to contact us!!

Posted by Leather Jacket Products (http://www.hncunrui.com)on Monday, 12.17.07 @ 05:41am | #3129

<a href=http://www.realpoor.de>wow gold</a>
<a href=http://www.realpoor.de>world of warcraft gold</a>
<a href=http://www.realpoor.de>wow gold kaufen</a>
<a href=http://www.realpoor.de>wow geld</a>
<a href=http://www.wowgoldbag.de>wow gold</a>
<a href=http://www.wowgoldbag.de>world of warcraft gold </a>
<a href=http://www.wowgoldbag.de>wow gold kaufen</a>
<a href=http://www.wowgoldbag.de>wow geld</a>
<a href=http://www.wowgoldeu.de>wow gold</a>
<a href=http://www.wowgoldeu.de>world of warcraft gold</a>
<a href=http://www.wowgoldeu.de>wow gold kaufen</a>
<a href=http://www.wowgoldeu.de>wow geld</a>
<a href=http://www.goldtao.de>wow gold</a>
<a href=http://www.goldtao.de>world of warcraft gold</a>
<a href=http://www.goldtao.de>wow gold kaufen</a>
<a href=http://www.goldtao.de>wow geld</a>
<a href=http://www.wowgoldbag.co.uk>wow gold</a>
<a href=http://www.wowgoldbag.co.uk>world of warcraft gold</a>
<a href=http://www.wowgoldbag.co.uk>buy wow gold</a>
<a href=http://www.wowgoldbag.co.uk>cheap wow gold</a>
<a href=http://www.realpoor.co.uk>wow gold</a>
<a href=http://www.realpoor.co.uk>world of warcraft gold</a>
<a href=http://www.realpoor.co.uk>buy wow gold</a>
<a href=http://www.realpoor.co.uk>cheap wow gold</a>
<a href=http://www.goldtao.co.uk>wow gold</a>
<a href=http://www.goldtao.co.uk>world of warcraft gold</a>
<a href=http://www.goldtao.co.uk>buy wow gold</a>
<a href=http://www.goldtao.co.uk>cheap wow gold</a>
<a href=http://www.wowgoldeu.co.uk>wow gold</a>
<a href=http://www.wowgoldeu.co.uk>world of warcraft gold</a>
<a href=http://www.wowgoldeu.co.uk>buy wow gold</a>
<a href=http://www.wowgoldeu.co.uk>cheap wow gold</a>
<a href=http://www.goldtao.fr>wow gold</a>
<a href=http://www.goldtao.fr>world of warcraft gold</a>
<a href=http://www.goldtao.fr>wow po</a>
<a href=http://www.goldtao.fr>Wow or</a>
<a href=http://www.wowgoldbag.fr>Wow gold</a>
<a href=http://www.wowgoldbag.fr>world of warcraft gold</a>
<a href=http://www.wowgoldbag.fr>wow po</a>
<a href=http://www.wowgoldbag.fr>Wow or</a>
<a href=http://www.wowgoldeu.fr>wow gold</a>
<a href=http://www.wowgoldeu.fr>world of warcraft gold</a>
<a href=http://www.wowgoldeu.fr>wow po</a>
<a href=http://www.wowgoldeu.fr>Wow or</a>
<a href=http://www.realpoor.fr>wow gold</a>
<a href=http://www.realpoor.fr>world of warcraft gold</a>
<a href=http://www.realpoor.fr>wow po</a>
<a href=http://www.realpoor.fr>Wow or</a>
<a href=http://www.wowgoldeuro.de>wow gold</a>
<a href=http://www.wowgoldeuro.de>world of warcraft gold</a>
<a href=http://www.wowgoldeuro.de>wow gold kaufen</a>
<a href=http://www.wowgoldeuro.de>wow geld</a>
<a href=http://www.wowgoldeuserver.de>wow gold</a>
<a href=http://www.wowgoldeuserver.de>world of warcraft gold</a>
<a href=http://www.wowgoldeuserver.de>wow gold kaufen</a>
<a href=http://www.wowgoldeuserver.de>wow geld</a>
<a href=http://www.billigwowgold.de>wow gold</a>
<a href=http://www.billigwowgold.de>world of warcraft gold</a>
<a href=http://www.billigwowgold.de>wow gold kaufen</a>
<a href=http://www.billigwowgold.de>wow geld</a>
<a href=http://www.buyingwowgold.de>wow gold</a>
<a href=http://www.buyingwowgold.de>world of warcraft gold</a>
<a href=http://www.buyingwowgold.de>wow gold kaufe</a>
<a href=http://www.buyingwowgold.de>wow geld</a>
<a href=http://www.wowgeld.de>wow gold</a>
<a href=http://www.wowgeld.de>world of warcraft gold</a>
<a href=http://www.wowgeld.de>wow gold kaufe</a>
<a href=http://www.wowgeld.de>wow geld</a>
<a href=http://www.wow-gold-guide.de>wow gold</a>
<a href=http://www.wow-gold-guide.de>world of warcraft gold</a>
<a href=http://www.wow-gold-guide.de>wow gold kaufe</a>
<a href=http://www.wow-gold-guide.de>wow geld</a>
<a href=http://www.wowgold100.de>wow gold</a>
<a href=http://www.wowgold100.de>world of warcraft gold</a>
<a href=http://www.wowgold100.de>wow gold kaufe</a>
<a href=http://www.wowgold100.de>wow geld</a>
<a href=http://www.wowgold1000.de>wow gold</a>
<a href=http://www.wowgold1000.de>world of warcraft gold</a>
<a href=http://www.wowgold1000.de>wow gold kaufe</a>
<a href=http://www.wowgold1000.de>wow geld</a>
<a href=http://www.wow-po.fr>wow gold</a>
<a href=http://www.wow-po.fr>world of warcraft gold</a>
<a href=http://www.wow-po.fr>wow po</a>
<a href=http://www.wow-po.fr>Wow or</a>
<a href=http://www.cheapwowgold.fr>wow gold</a>
<a href=http://www.cheapwowgold.fr>world of warcraft gold</a>
<a href=http://www.cheapwowgold.fr>wow po</a>
<a href=http://www.cheapwowgold.fr>Wow or</a>

Posted by wen (www.realpoor.de)on Wednesday, 12.19.07 @ 04:15am | #3131

test

Posted by todd on Wednesday, 12.19.07 @ 08:43am | #3132

jj

Posted by kol on Wednesday, 12.26.07 @ 09:24pm | #3133

SEHR GUT!

Posted by DASKALOS on Sunday, 12.30.07 @ 10:09am | #3134

Wow.. It works fine.. I have added it in my site - http://www.thedesignsuperhero.com/contactme.php#post

Posted by aravind (http://www.thedesignsuperhero.com/)on Wednesday, 01.2.08 @ 06:13pm | #3138

Wow.. It works fine.. I have added it in my site - http://www.thedesignsuperhero.com/contactme.php#post

Posted by aravind (http://www.thedesignsuperhero.com/)on Wednesday, 01.2.08 @ 06:14pm | #3139

Thanks very much for providing this script. I'm new to PHP and after testing several other comment scripts finally found one that works.

Posted by Ben (www.lunainspired.com)on Friday, 01.4.08 @ 04:10am | #3141

why not working no diplay when i run

Posted by RENZOUS on Saturday, 01.5.08 @ 05:35am | #3142

test

Posted by Doonce on Saturday, 01.5.08 @ 08:12pm | #3143

test

Posted by Doonce on Saturday, 01.5.08 @ 08:12pm | #3144

comment test

Posted by ali veli on Monday, 01.7.08 @ 01:46am | #3145

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/xyz/public_html/inc_rate.php on line 2

Parse error: parse error, unexpected T_VARIABLE in /home/xyz/public_html/inc_rate.php on line 3a

ANYBODY HAVE ANY IDEAS WHAT THE DEALIO IS. WHEN I LOOK TO THE LINES THE ERROR IS REFERNCING IT DOESNT SEEM TO MAKE SENSE

Posted by E Z on Thursday, 01.10.08 @ 09:29am | #3146

FIGURED OUT MY FIRST PROBLEM. NOW HAVE I KNEW QUESTION:

IF INSTEAD OF HAVING A NAME FIELD TO FILL OUT, I USE THE USERNAME SOMEONE IS LOGGED INTO THE PAGE UNDER. HOW WOULD THAT FIT INTO THE ORIGINAL CODE.

I've tried:

Removing the name field and on the submitcomment.php

$tuturl = $_POST["tuturl"]/;
$tutid2 = $_POST["tutid2"]/;
$name = $myusername/;
$url = $_POST["url"]/;
$email = $_POST["email"]/;
$message = $_POST["message"]/;

$sendcomment = mysql_query("INSERT INTO comments SET tutorialid='$tutid2', name='$name', url='$url', email='$email', comment='$message', date=now()")/;

it still posts just no name showing up

Posted by E Z on Thursday, 01.10.08 @ 12:04pm | #3147

Figured out my final problem.

Now my form only has url and comment input.
It automatically post the username thats logged in, linked to the input url.

WORKS GREAT!
THIS SCRIPT IS BOMB!

Posted by E Z on Thursday, 01.10.08 @ 12:37pm | #3148

this script is very useful for a web designer,who don't know Programing.

Posted by nihalthainua (www.citec.in)on Thursday, 01.10.08 @ 11:58pm | #3151

smashbac

Posted by dfghd (dtb.dt)on Friday, 01.11.08 @ 05:48am | #3152

Hello,
This is perfect and just what I've been looking for, but I'm having the same problem as others and none of the fixes on here are working for me. The refresh code is not redirecting back, it's just continually refreshing the submitcomment.php page.

Has anyone got an alternative fix for this?

Many thanks,
Mark

Posted by Mark (http://www.markamy.com)on Friday, 01.11.08 @ 06:50am | #3153

All working perfectly now.

Thank you very much for this tutorial. This is exactly what I was looking for and all I could find on the net were loads of guestbooks or comment boxes for myspace!

Much appreciated!

Posted by Mark (www.markamy.com)on Friday, 01.11.08 @ 09:16am | #3154

qqqqqqqqq

Posted by qqq on Friday, 01.11.08 @ 02:52pm | #3155

I got it working and the date and name of the commentor work but not the actual comment. Its blank. Any idea why?

Posted by kat on Tuesday, 01.15.08 @ 03:14pm | #3157

You rock! Thanks!

Posted by Mack2D2 (http://www.righteousgraphics.com)on Tuesday, 01.15.08 @ 05:36pm | #3158

Test

Posted by a on Tuesday, 01.15.08 @ 11:11pm | #3159

Test comment

Posted by Danke (nourl)on Monday, 01.21.08 @ 08:21am | #3163

Test comment

Posted by Danke (nourl)on Monday, 01.21.08 @ 08:21am | #3164

4

Posted by 1 (3)on Tuesday, 01.22.08 @ 10:33am | #3165

This has been helpful

Posted by me on Friday, 01.25.08 @ 01:46pm | #3167

This has been helpful

Posted by me on Friday, 01.25.08 @ 01:46pm | #3168

Going back kind of sucks

Posted by awef (awef)on Friday, 01.25.08 @ 01:57pm | #3169

this is my comment

Posted by eric (www.eric.com)on Saturday, 01.26.08 @ 07:09am | #3171

this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my commentthis is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my commentthis is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my commentthis is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my commentthis is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my commentthis is my comment
this is my commentthis is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my comment
this is my commentthis is my comment
this is my comment

Posted by eric (www.eric.com)on Saturday, 01.26.08 @ 07:10am | #3172

Hi,

How do it this antispam code?

Posted by Mac on Saturday, 01.26.08 @ 11:53am | #3173

Hi,
Very nice tuto. Am glad I search through here and find this code.

Posted by Honza (www.polo.com)on Wednesday, 01.30.08 @ 05:35am | #3179

werwerwefwefwe

Posted by asdfa ( )on Monday, 02.4.08 @ 10:32am | #3184

This is a test of the comment script

Posted by Free Video Website (http://www.youtubevideos.com.au/)on Monday, 02.4.08 @ 09:22pm | #3185

lolwut

Posted by asdfa on Tuesday, 02.5.08 @ 10:32am | #3186

yo ho ho

Posted by rara on Thursday, 02.7.08 @ 05:52am | #3188

please, make admin file!

Posted by vaksa (http://vaksa.net)on Monday, 02.11.08 @ 01:32pm | #3190

good

Posted by anto on Thursday, 02.14.08 @ 04:13am | #3191

this is a comment test

Posted by stammm (nothing)on Wednesday, 02.20.08 @ 05:46am | #3194

aaaaaaaaaa

Posted by adf on Wednesday, 02.20.08 @ 11:29pm | #3195

mango

Posted by mango (mango)on Thursday, 02.21.08 @ 11:37pm | #3196

sadasd

Posted by lala (www.mcsteffy666.go.ro)on Friday, 02.22.08 @ 05:16am | #3197

testtest Cool script!

Posted by Comment form on Saturday, 02.23.08 @ 01:51pm | #3198

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3199

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3200

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3201

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3202

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3203

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3204

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3205

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3206

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:00am | #3207

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3208

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3209

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3210

io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3211

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3212

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3213

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3214

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3215

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3216

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3217

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3218

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3219

very bad anti-spam protection lol
io io

Posted by io (io)on Wednesday, 02.27.08 @ 09:01am | #3220

t

Posted by t (t)on Thursday, 02.28.08 @ 09:23am | #3221

okthis is a test and checking the siste

Posted by test on Thursday, 02.28.08 @ 09:24am | #3222

________________________________________________________________________________________________________________________________________________________

Posted by test on Friday, 02.29.08 @ 10:35am | #3223

To think I found what I've been looking for! Oh wait, another broken tutorial.

I wonder if it works here? I guess I'll find out after hitting the 'submit comment' button.

Oh look, there is a CAPTCHA box that requires me to enter the shown text to submit this comment. To bad this isn't included in what I just uploaded to my site.

Oh yeah, I still can not fix the error after submitting. Some of you have noticed that you are stuck on a reloading page after submitting.

I have a site and I would like to have feedback comments for my articles. People have created blogs and bulletin-boards, why not a comment/submitting form? I'm even willing to pay. :|

Posted by Fox on Saturday, 03.1.08 @ 06:59am | #3226

test

Posted by sina on Monday, 03.3.08 @ 12:08pm | #3227

test

Posted by sina on Monday, 03.3.08 @ 12:08pm | #3228

Excellent script, thanks so much.

There are so many out there with full on admin panels etc that I just didnt need.

Once again thanks!!

Posted by Lolly (http://www.chickapets.com)on Tuesday, 03.4.08 @ 04:22am | #3229

Excellent script, thanks so much.

There are so many out there with full on admin panels etc that I just didnt need.

Once again thanks!!

Posted by Lolly (http://www.chickapets.com)on Tuesday, 03.4.08 @ 04:42am | #3230

Just testing out this script which looks impressive indeed.

Posted by Chandu on Tuesday, 03.4.08 @ 08:24am | #3231

Great site!

Posted by RN on Wednesday, 03.5.08 @ 04:24am | #3232

This is really cool. I just need help with the database part bacause I don't have a clue how it works...

Posted by Francois La Cock (www.icreate-design.co.za)on Thursday, 03.6.08 @ 01:50am | #3233

javascript:go('http://www.xss.com','new')

Posted by javascript:go('http://www.xss.com','new') (www.www.com)on Thursday, 03.6.08 @ 07:33am | #3234

Nice Script forever

Posted by manoj d on Friday, 03.7.08 @ 07:34am | #3235

Hi!

I have problem, it's says:



Warning: mysql_query(): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /home/www/samppazor.freehostia.com/inc_rate.php on line 326

Warning: mysql_query(): A link to the server could not be established in /home/www/samppazor.freehostia.com/inc_rate.php on line 326
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

Posted by SamppaZor on Sunday, 03.9.08 @ 08:36am | #3236

Thanks

Posted by sanam (no)on Tuesday, 03.11.08 @ 06:20pm | #3239

Thanks

Posted by sanam (no)on Tuesday, 03.11.08 @ 06:20pm | #3240

http://xss.com

Posted by http://xss.com (http://xss.com)on Thursday, 03.13.08 @ 05:53am | #3241

tytyt

Posted by raa (yy)on Friday, 03.14.08 @ 09:28am | #3243

Anyone find a way to limit the results?

Posted by Josh on Sunday, 03.16.08 @ 12:16am | #3244

I'm working on a site now but I'm new having a database. I have created an mysql database but I am unsure how to access it to add the command for the table. Any advice would be appreciated. Thanks.

Posted by ajodom (www.thecomplexcurve.com)on Monday, 03.17.08 @ 05:20pm | #3246

Never mind I figured that part out but for some reason when I preview my page, nothing shows up.. I have entered my server info and user name and saved it as a php file but I'm getting nothing. Any advice?

Posted by ajodom10 on Tuesday, 03.18.08 @ 10:42am | #3247

testing

Posted by jack (jack.com)on Wednesday, 03.19.08 @ 08:24pm | #3252

just testing

Posted by skdg on Thursday, 03.20.08 @ 01:27am | #3253

test

Posted by hm on Saturday, 03.22.08 @ 10:50pm | #3256

jjjjjjj

Posted by blah on Sunday, 03.23.08 @ 05:48am | #3257

ifm rvimew rviwme tes tes test

Posted by r gwer (fm fmrw)on Sunday, 03.23.08 @ 10:25pm | #3258

test

Posted by Sim on Monday, 03.24.08 @ 12:29am | #3259

test

Posted by Sim on Monday, 03.24.08 @ 01:08am | #3260

I like the script and I can get the form to work on my page but when I click submit it says 'There was an error with the submission.'

Any way of getting this to work?
plus what am I supposed to put in here:
$tuturl = $_POST["tuturl"]/;
$tutid2 = $_POST["tutid2"]/;

this should be simple to do

Posted by james on Monday, 03.31.08 @ 08:42am | #3271

Is there any way to allow html code?

Posted by Brooks on Tuesday, 04.1.08 @ 10:54am | #3272

this is a test.

Posted by tester (www.hhh.com)on Sunday, 04.6.08 @ 11:58am | #3279

FIX TO REDIRECT:


CHANGE (In testpage.php):

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

TO:
<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1", $_SERVER['PHP_SELF'])/;
?>

I have no idea why he used $PHP_SELF. It makes NO SENSE.

Posted by Fix on Monday, 04.7.08 @ 10:55pm | #3280

FIX TO REDIRECT:


CHANGE (In testpage.php):

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

TO:
<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1", $_SERVER['PHP_SELF'])/;
?>

I have no idea why he used $PHP_SELF. It makes NO SENSE.

Posted by Fix on Monday, 04.7.08 @ 10:55pm | #3281

FIX TO REDIRECT:


CHANGE (In testpage.php):

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

TO:
<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1", $_SERVER['PHP_SELF'])/;
?>

I have no idea why he used $PHP_SELF. It makes NO SENSE.

Posted by ' (')on Monday, 04.7.08 @ 10:57pm | #3282

EXCLUSIVE WORLD MOBILE TELECOMMUNICATION LIMITED.
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

CURRENT PRICE LISTED BELOW:


E-mail:..msgr_192@yahoo.com

E-mail:..msgr192@live.com

E-mail:..msgr192@gmail.com




Apple i-phone 16gb,,,,,,,,,,,,,,,,,,$350usd
Apple i-phone 8gb,,,,,,,,,,,,,,,,,,,$280usd
Apple i-phone 4gb,,,,,,,,,,,,,,,,,,,$230usd



Sidekick Lx,,,,,,,,,,,,,,,,,,,,,,,,,,$250usd
Green Lrg sidekick,,,,,,,,,,,,,,,,,,,$170usd
New Diane von Furstenberg Gizmodo sidekick3,,,$200usd
Brand New Sidekick 4,,,,,,,,,,,,,,,,,$200usd
D-wade limited edition,,,,,,,,,,,,,,,$160usd
New Mr. Cartoon sidekick,,,,,,,,,,,,,$150usd
Sidekick 3,,,,,,,,,,,,,,,,,,,,,,,,,,,$160usd
Pink Juicy coutoure Sidekick 1,,,,,,,$150usd
Pink Juicy coutoure Sidekick 2,,,,,,,$160usd
Pink Juicy coutoure Sidekick 3,,,,,,,$170usd
Sidekick II T-Mobile Color Screen,,,,$140usd
Sidekick 2 Danger Cell,,,,,,,,,,,,,,,$140usd
Sidekick II TMO to Go Prepaid Phone,,$140usd
Mobile Sidekick II,,,,,,,,,,,,,,,,,,,$130usd
Sidekick 2 Danger Cell Phone,,,,,,,,,$150usd
Yellow iD Sidekick4,,,,,,,,,,,,,,,,,,$165USD


Nokia n96 16gb,,,,,,,,,,,,,$350usd
Nokia n95 8gb,,,,,,,,,,,,,,$250usd
Nokia n97,,,,,,,,,,,,,,,,,,$270usd
Nokia AEON,,,,,,,,,,,,,,,,,$350usd
Nokia vertu ascent,,,,,,,,,$700usd
Nokia vertu 24 carat gold,,$700usd


Nokia n95,,,,,,,,,,,,,,,,,,$230usd
Nokia N73 Music Edition,,,,$200usd
Nokia n73,,,,,,,,,,,,,,,,,,$180usd
Nokia n93,,,,,,,,,,,,,,,,,,$180usd
Nokia n93i,,,,,,,,,,,,,,,,,$200usd
Nokia n92,,,,,,,,,,,,,,,,,,$180usd

Nokia n91,,,,,,,,,,,,,,,,,,$190usd
Nokia n90,,,,,,,,,,,,,,,,,,$185usd
Nokia n80,,,,,,,,,,,,,,,,,,$180usd
Nokia n83,,,,,,,,,,,,,,,,,,$200usd
Nokia n75,,,,,,,,,,,,,,,,,,$250usd
Nokia n76,,,,,,,,,,,,,,,,,,$250usd

Nokia n77,,,,,,,,,,,,,,,,,,$260usd
Nokia n71,,,,,,,,,,,,,,,,,,$175usd
Nokia E90,,,,,,,,,,,,,,,,,,$210usd
Nokia E65,,,,,,,,,,,,,,,,,,$200usd
Nokia E61i,,,,,,,,,,,,,,,,,$170usd
Nokia 8800,,,,,,,,,,,,,,,,,$180usd
Nokia 8800 sirocco,,,,,,,,,$200usd

Nokia 9300,,,,,,,,,,,,,,,,,$170usd
Nokia 9500,,,,,,,,,,,,,,,,,$180usd
Nokia 7380,,,,,,,,,,,,,,,,,$160usd
Nokia 7370,,,,,,,,,,,,,,,,,$150usd
Nokia 7360,,,,,,,,,,,,,,,,,$160usd
Nokia 6102,,,,,,,,,,,,,,,,,$140usd
Nokia 6230i,,,,,,,,,,,,,,,,$140usd
Nokia E70,,,,,,,,,,,,,,,,,,$160usd







Posted by Raymond on Tuesday, 04.8.08 @ 03:18am | #3283


ท/;ด/;ส/;อ/;บ/;ก/;า/;ร/;ใ/;ช/;้/;ง/;า/;น/;ภ/;า/;ษ/;า/;ไ/;ท/;ย/;

Posted by นายนัท on Tuesday, 04.8.08 @ 07:58am | #3284

is there any way by which we can permit html codes??
www.jeffpaul.tv

Posted by Tracy Esau (http://www.jeffpaul.tv)on Tuesday, 04.8.08 @ 11:27pm | #3285

is there any way by which we can permit html codes??
www.jeffpaul.tv

Posted by Tracy Esau (http://www.jeffpaul.tv)on Tuesday, 04.8.08 @ 11:27pm | #3286

asdasd
asdsadasd
asdsadsa
dasdsads
adasdasd
sadsadas
dsadsadsadsadsad
asdasdsad

Posted by akmar (www.www.com)on Thursday, 04.10.08 @ 12:34am | #3287

Hope this works! Thanks for the tutorial.

Posted by Jajjuzza (www.dianeszoo.com)on Thursday, 04.10.08 @ 04:09pm | #3292

sdcvsdfsdf

Posted by DO U THINK (http;asd.com)on Monday, 04.14.08 @ 10:10pm | #3294

sdcvsdfsdf

Posted by DO U THINK (http;asd.com)on Monday, 04.14.08 @ 10:11pm | #3295

Mobile Phone GPS Tracking & body = Try out this mobile phone tracker, it's great! Track any connected mobile phone using a satellite map with coverage anywhere in the world!!!! Log on to www.keep2you.info

Posted by me on Thursday, 04.17.08 @ 03:47pm | #3297

I like the captcha but damn hard for even me to read.

Posted by How to Start an Online Business (http://247-coach.com)on Thursday, 04.17.08 @ 04:58pm | #3298

Brand new Mobile phone Plasma tv , Laptop game at cheap price come with complete accessories with one year international warranty.

Email address:applemac_inc@hotmail.com

NOKIA N93i...........$250usd
NOKIA N95 8GB....$350USD
IPHONE 16GB…/;…/;$350USD
iPHONE 8GB…/;…/;..$300USD
IPOD 32GB.........$280USD
NOKIA N96.........$400USD
PS3 60GB…/;…/;....$300USD


AND MANY MORE…/;…/;…/;…/;

NOKIA N96 16GB SPECIFICATION

PACKAGE CONTENTS:
1 Nokia N96 16GB Phone
1 Li-ion Battery BL-6F
1 USB Cable
1 User Manual (Hard Copy or CD)
1 CD Rom
1 International Charger + US Adapter Or (US Charger)
Nokia Connectivity Cable CA-101
Nokia Stereo Headset and Remote HS-45, AD-54
Nokia Mobile Charger DC-4 (car charger)
Nokia Compact Travel Charger AC-5

WE MAKE SHIPMENT VIA UPS AND FEDEX SHIPPING COMPANY 2DAYS DELIVER , IF YOU ARE INTERESTED IN BUYING CONTACT US.

Email address:applemac_inc@hotmail.com

Posted by lausen on Friday, 04.18.08 @ 09:19pm | #3300

Brand new Mobile phone Plasma tv , Laptop game at cheap price come with complete accessories with one year international warranty.

Email address:applemac_inc@hotmail.com

NOKIA N93i...........$250usd
NOKIA N95 8GB....$350USD
IPHONE 16GB…/;…/;$350USD
iPHONE 8GB…/;…/;..$300USD
IPOD 32GB.........$280USD
NOKIA N96.........$400USD
PS3 60GB…/;…/;....$300USD


AND MANY MORE…/;…/;…/;…/;

NOKIA N96 16GB SPECIFICATION

PACKAGE CONTENTS:
1 Nokia N96 16GB Phone
1 Li-ion Battery BL-6F
1 USB Cable
1 User Manual (Hard Copy or CD)
1 CD Rom
1 International Charger + US Adapter Or (US Charger)
Nokia Connectivity Cable CA-101
Nokia Stereo Headset and Remote HS-45, AD-54
Nokia Mobile Charger DC-4 (car charger)
Nokia Compact Travel Charger AC-5

WE MAKE SHIPMENT VIA UPS AND FEDEX SHIPPING COMPANY 2DAYS DELIVER , IF YOU ARE INTERESTED IN BUYING CONTACT US.

Email address:applemac_inc@hotmail.com

Posted by lausen on Friday, 04.18.08 @ 09:20pm | #3301

Brand new Mobile phone Plasma tv , Laptop game at cheap price come with complete accessories with one year international warranty.

Email address:applemac_inc@hotmail.com

NOKIA N93i...........$250usd
NOKIA N95 8GB....$350USD
IPHONE 16GB…/;…/;$350USD
iPHONE 8GB…/;…/;..$300USD
IPOD 32GB.........$280USD
NOKIA N96.........$400USD
PS3 60GB…/;…/;....$300USD


AND MANY MORE…/;…/;…/;…/;

NOKIA N96 16GB SPECIFICATION

PACKAGE CONTENTS:
1 Nokia N96 16GB Phone
1 Li-ion Battery BL-6F
1 USB Cable
1 User Manual (Hard Copy or CD)
1 CD Rom
1 International Charger + US Adapter Or (US Charger)
Nokia Connectivity Cable CA-101
Nokia Stereo Headset and Remote HS-45, AD-54
Nokia Mobile Charger DC-4 (car charger)
Nokia Compact Travel Charger AC-5

WE MAKE SHIPMENT VIA UPS AND FEDEX SHIPPING COMPANY 2DAYS DELIVER , IF YOU ARE INTERESTED IN BUYING CONTACT US.

Email address:applemac_inc@hotmail.com

Posted by lausen on Friday, 04.18.08 @ 09:21pm | #3302

Brand new Mobile phone Plasma tv , Laptop game at cheap price come with complete accessories with one year international warranty.

Email address:applemac_inc@hotmail.com

NOKIA N93i...........$250usd
NOKIA N95 8GB....$350USD
IPHONE 16GB…/;…/;$350USD
iPHONE 8GB…/;…/;..$300USD
IPOD 32GB.........$280USD
NOKIA N96.........$400USD
PS3 60GB…/;…/;....$300USD


AND MANY MORE…/;…/;…/;…/;

NOKIA N96 16GB SPECIFICATION

PACKAGE CONTENTS:
1 Nokia N96 16GB Phone
1 Li-ion Battery BL-6F
1 USB Cable
1 User Manual (Hard Copy or CD)
1 CD Rom
1 International Charger + US Adapter Or (US Charger)
Nokia Connectivity Cable CA-101
Nokia Stereo Headset and Remote HS-45, AD-54
Nokia Mobile Charger DC-4 (car charger)
Nokia Compact Travel Charger AC-5

WE MAKE SHIPMENT VIA UPS AND FEDEX SHIPPING COMPANY 2DAYS DELIVER , IF YOU ARE INTERESTED IN BUYING CONTACT US.

Email address:applemac_inc@hotmail.com

Posted by lausen on Friday, 04.18.08 @ 09:21pm | #3303

Just testing if a bbcode link is working.
Not working with me.

www.test.nl

Posted by Bas on Monday, 04.21.08 @ 06:43am | #3304

Ok, the bbcode script adds javascript when linking. Getting rid of the javascript solves the problem.

Posted by Bas on Monday, 04.21.08 @ 06:51am | #3305

It's been a long time since i went on an adult vacation trip to the Caribbean island of Dominican Republic, My last visit was back in September at charlisangels adult and erotic vacations, With beautiful European and Russian escorts at an all inclusive packages.

Posted by krise601 on Monday, 04.21.08 @ 05:18pm | #3306

Nice tutorial :P

Posted by Apell on Tuesday, 04.22.08 @ 03:10pm | #3309

salam

Posted by azim on Thursday, 04.24.08 @ 01:53am | #3310

Really helpful . The code helps me to build my own feedback form

Posted by danleach (http://www.danleach.com)on Saturday, 04.26.08 @ 05:59am | #3311

excellent , thanks a lot , i was googling and found the page . great stuff for me


www.nowpak.com

Posted by danleach (http://www.nowpak.com)on Saturday, 04.26.08 @ 06:01am | #3312

hi all,
is not warking it says:
I cannot connect to the database because: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (46)
can anyone help?

Posted by med on Monday, 04.28.08 @ 12:42am | #3313

I keep on getting no database selected, whats the deal with that

Posted by david on Wednesday, 04.30.08 @ 07:56am | #3316

<script type='text/javascript' src = 'http://search.webdunia.com/sc/js/csc.js'></script>
<script type='text/javascript' language='javascript'> loadForm('HI','webdunia.com','http://hindi.webdunia.com/images/logo.gif',false,'http://search.webdunia.com/sc' )/; </script>
<script type='text/javascript' >loadControl()/;</script>

Posted by sdfsdf (slfkj.com)on Friday, 05.2.08 @ 11:19pm | #3318

<script type='text/javascript' src = 'http://search.webdunia.com/sc/js/csc.js'></script>
<script type='text/javascript' language='javascript'> loadForm('HI','webdunia.com','http://hindi.webdunia.com/images/logo.gif',false,'http://search.webdunia.com/sc' )/; </script>
<script type='text/javascript' >loadControl()/;</script>

Posted by sdfsdf (slfkj.com)on Friday, 05.2.08 @ 11:19pm | #3319

<script type='text/javascript' src = 'http://search.webdunia.com/sc/js/csc.js'></script>
<script type='text/javascript' language='javascript'> loadForm('HI','webdunia.com','http://hindi.webdunia.com/images/logo.gif',false,'http://search.webdunia.com/sc' )/; </script>
<script type='text/javascript' >loadControl()/;</script>

Posted by sdfsdf (slfkj.com)on Friday, 05.2.08 @ 11:19pm | #3320

<script type='text/javascript' src = 'http://search.webdunia.com/sc/js/csc.js'></script>
<script type='text/javascript' language='javascript'> loadForm('HI','webdunia.com','http://hindi.webdunia.com/images/logo.gif',false,'http://search.webdunia.com/sc' )/; </script>
<script type='text/javascript' >loadControl()/;</script>

Posted by sdfsdf (slfkj.com)on Friday, 05.2.08 @ 11:19pm | #3321

<script type='text/javascript' src = 'http://search.webdunia.com/sc/js/csc.js'></script>
<script type='text/javascript' language='javascript'> loadForm('HI','webdunia.com','http://hindi.webdunia.com/images/logo.gif',false,'http://search.webdunia.com/sc' )/; </script>
<script type='text/javascript' >loadControl()/;</script>

Posted by sdfsdf (slfkj.com)on Friday, 05.2.08 @ 11:19pm | #3322

kljhlkdjhsfklj

Posted by mehmood (dksfhldkjh)on Monday, 05.5.08 @ 12:24pm | #3325

Heelooo allll of you

Posted by asas (www.bltemplates.info)on Saturday, 05.10.08 @ 12:21am | #3328

When I submit the comment and comes to this page: submission successful bla bla..

It just reloads that page again and again! what's wrong?

Posted by Helene on Monday, 05.12.08 @ 04:41pm | #3331

gostei

Posted by manuel on Tuesday, 05.13.08 @ 03:39am | #3332

gostei

Posted by manuel on Tuesday, 05.13.08 @ 03:40am | #3333

rofl

Posted by rofl (www.rofl.com)on Tuesday, 05.13.08 @ 09:22am | #3334

rofl

Posted by rofl (www.rofl.com)on Tuesday, 05.13.08 @ 09:22am | #3335


Company Name:CHIEF BORBIT ELECTRONICS STORES LTD
Registered No.04023562

Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com

Your satisfatory is our goal !

We are well experienced importer for all kind of consumer electronics such as
cell phone, mp3 mp4 players, camera, cell phone accessories, iPod accessories
and PSP accessories. We have our buying office in Hong Kong with a crew of buyers
and quality controlers to ensure our items in latest fashion and good quality before
they ship over to our warehouse in republic of benin.

Quick response and ready to help is the principle of our sales team. If you can't find
what you want at our store, just contact us, we will search it for you. Any techinal needs
just email us we have our specialist ready to answer your questions.

We treat all our customers as our biggest customers, we don't mind you just buy 99 cents from us,
we still treat you with our 100% effort, we believe in good quality service is as important as good
quality products.

Just try to shop with us, you will feel both the quality on the products and the service.

Wholesale customers after registeration please email for setting up wholesaler account.
We also provide FREE DELIVERY in some area at LA, Email for details.

Nokia N96@350
Nokia N95 @250usd
Nokia N93i@ 220usd
Nokia n93 @ 200usd
Nokia N92 @ 180usd
Nokia N91 8GB@185usd
Nokia N80 @180usd
Nokia N76 @160usd
Nokia N75 @130usd
Nokia N73 @120usd
Nokia N70 @100usd
Nokia E90 Communicator @200usd
Nokia E65 @ 130usd
Nokia E61i @120usd
Nokia 8801 @ 150usd
Nokia 8800 Sirocco @200usd
Nokia 770 Internet @ 160usd

LG KE800 Special Edition @ 200usd
LG KE970 Shine 3G @ 180usd
LG KE770 Shine@ 150usd
LG KE850 Prada @250usd

iMate Ultimate 5150 @200usd
iMate SP Jam @170usd
iMate PDAL @ 200usd
iMate Jaq 4 @210usd
iMate Jaq 3 @200usd
iMate JAQ @ 180usd
iMate JAM @ 150usd

Apple iPhone 4GB Unlocked @ 200usd
Apple iPhone 8GB Unlocked @250usd

Blackberry 8800 "indigo" (unlocked) @ 220usd
Blackberry 8700g @ 180usd
Blackberry 8100 Pearl Cingular (unlocked) @160usd

ETEN X500 Glofiish @ 180usd
ETEN M700 Glofiish 2 @200usd
ETEN M600 @ 150usd
ETEN G500 @ 120usd
E-TEN X800 Glofiish @ 250usd

Okwap Sanrio hello kitty i885 mobile @ 230usd
Okwap i885 Sanrio Hello Kitty Cell @ 210 usd

TomTom GO GPS Car Navigation System @ 200usd
TomTom Go 910 GPS Car Navigation System @150usd
TomTom Go 510 GPS @ 180usd

Motorola RIZR Z8 @ 250usd
Motorola RIZR Z6 @ 230usd
Motorola RAZR V3XX Unlocked @ 180usd
Motorola RAZR maxx V6 Ferrari Challenge @ 220usd
Motorola RAZR Maxx @ 200usd
Motorola Q9 @ 300usd
Motorola KRZR K3 @ 280usd
Motorola KRZR @ 200usd
Motorola E6 @ 180usd

OQO model 01+ Ultra PC @400usd
OQO model 02 Ultra PC (pre-order) @420usd
OQO model 02 Ultra PC (pre-order) @ 410usd

Palm Treo 750v (open box) @260usd
Palm Treo 750 Unlocked Cingular @220usd
Palm Treo 680 (Graphite) @ 180usd

Samsung Z720 @ 150usd
Samsung Ultra Edition 5.9 @ 270usd
Samsung SGH-P310 @ 155usd
Samsung SGH-i830 @ 190usd
Samsung SGH-i718 @ 190uad
Samsung SGH-i600 @180usd
Samsung SGH-F700 @ 200usd
Samsung SGH-B600 @ 300usd
Samsung i760 @ 250uad
Samsung F500 @ 200uad
Samsung D900 @ 130uad
Samsung BlackJack SGH-i607 Unlocked @ 220usd
Samsung BD-P1000 Blu-Ray Disc Player @ 250usd

Sony Ericsson W950i @ 240uad
Sony Ericsson W880i Walkman Phone @ 230usd
Sony Ericsson W850i @ 215usd
Sony Ericsson W810i Walkman Phone @ 150usd
Sony Ericsson W660i @ 180usd
Sony Ericsson M600i @ 250usd
Sony Ericsson K810i Cyber-shot Digital Camera Phone @ 280usd
Sony Ericsson K800i @ 170usd
Sony Ericcson P990i @ 300usd

HTC PHONES
Cingular 8125 @ 160usd
Cingular 8525 @ 170usd
HTC TyTn @ 180USD
HTC 9100 Tmobile MDA (unlocked) @ 170usd
HTC Advantage Pocket PC (Athena) @ 380usd
HTC Kaiser @ 210usd
HTC P3300 @ 200usd
HTC P3350 @ 220usd
HTC P3400 @ 215usd
HTC P3600 (Trinity) @ 220usd
HTC P6500 (HTC Sirius) 250usd

MP3
All these are brand new, sealed in an original complete company box.
and also we have the one of 128 Mega Bytes
/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/; 512 Mega Bytes
and so on.............
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
San Disk SDMX1-1024-A18 SanDisk 1GB MP3 Player:::::::::70usd
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
Kanguru MP3- 1GB:::::::::::::::::::::::::::::::::::::::49usd
Mymusix MP3 Player with 1GB Sandisk SD card::::::::::::48usd
Samsung Nexus 50 XM Radio + MP3 (1GB) YP-X5Z:::::::::::190usd
Kanguru Micro MP3 Pro / 1GB / FM Tuner / MP3 Player::::50usd
MP3/Digital Player NANO MP3 1GB Creative:::::::::::::::50usd
RCA RD-2317FM MP3 1Gb MP3 Player with FM Transmitter:::140usd
All these are brand new, sealed in an original complete company box
still at list but not be listed now.
MP4 PORTABL
Epson P40000MSV 80GB MP4 Portable Media Player:::::::::250usd
Neuros Audio 442 Portable MP3 and MP4 Media Player:::::200usd
EPSON - Epson p40000msv 80gb mp4 portable media player:450usd


HP iPAQ rx5915 @ 220usd
HP iPAQ HW6945 GPS @ 210usd
HP 6915 @ 250usd

CECT IP1000 @ 200usd
Fujitsu Siemens LOOX T830 @ 300usd
Fujitsu Siemens LOOX N560 @ 2500usd
Gigabyte G-Smart i @ 170usd
Gigabyte G-Smart i120 @ 220usd
Gigabyte G-Smart i300 @ 240usd

Pioneer AVIC-S1 @ $350usd
Pioneer AVIC-Z1 Navigation AVICZ @ $600usd
Pioneer AVIC-N3 Multimedia Navigation Receiver @ $550
Pioneer Avic-z1 Dvd Player Navigation System @ $500usd
Pioneer AVIC-D1 / AVICD1 @ $400usd
Pioneer AVIC-D2 DVD Navigation System @ $400USD

GPS BLUETOOTH RECEIVER
GNS 5843 GPS RDS TMC Bluetooth Receiver:::::::::::::::::::::::::230USD
Holux GPS Bluetooth Receiver, Dongle & DELORME Maps 06::::::::::120USD
Pharos GPS Receiver with Bluetooth Wireless Technology::::::::::100usd
Navman GPS 4410 Bluetooth Receiver::::::::::::::::::::::::::::::220usd
TOMTOM Navigator 5 Wireless Bluetooth GPS:::::::::::::::::::::::260usd
Garmin 010-00378-00 GPS-10 Bluetooth® Enabled GPS:::::::::::::::250usd


PANASONIC PLASMA TV
Panasonic TH-37PHD8UK Plasma $350
Panasonic TH-42PWD8UK Plasma $600
Panasonic TH-42PHD8UK Plasma $500
Panasonic TH-42PD50U EDTV $ 450
Panasonic TH-42PX50U Plasma $650
Panasonic TH-50PX50U Plasma $700
panasonic TH-65PHD8UK Plasma $900

SONY PLASMA TV
SONY FWD-42PV1 Plasma Display $500
Sony PFM-42X1 Plasma Display $550
Sony FWD-50PX2 Plasma Display $700

SAMSUNG PLASMA TV
SAMSUNG HPP3761 Plasma TV $610
Samsung PPM42M5S Plasma Display $505
Samsung SPP4251 Plasma TV $700
Samsung PPM42M5H Plasma Display $550
Samsung HPR4252 Plasma $680
Samsung HPR4262 Plasma TV $450
Samsung HPR4272 Plasma $560
Samsung PPM50M5H Plasma Display $870
Samsung HPR5052 Plasma $670
Samsung HPR5072 Plasma $780
Samsung HPP5581 Plasma TV $780
Samsung PPM63H3Q Plasma Display $700
Samsung HPR6372 Plasma $820

HITACHI PLASMA TV
Hitachi CMP4211u Plasma $850
Hitachi CMP4212u Plasma $350
Hitachi 42HDF52 Plasma HDTV $400
Hitachi 42HDT52 Plasma TV $440
Hitachi 55HDS52 Plasma HDTV $480
Hitachi 55HDT52 Plasma TV $650
Hitachi CMP-55HDM71 Plasma $420

AOC ENVISION PLASMA TV
AOC Envision A42W64 Plasma $400

MAXENT PLASMA TV
Maxent MX-42VM7 Plasma EDTV $370
Maxent MX-50X2 Plasma $300

GAME CONSOLE
X box 360 Premium console ... ..200usd
Xbox 360 pal verrsion..........$170usd
Nintendowii.....................150usd
Nintendo wifi..........$220usd
Ps2.............................160usd
Playstation 3 20GB..............150usd
Playstation 3 60GB..............290usd

APPLE LAPTOP
Apple MacBook (MA700LL/A) Mac Notebook...................$450usd
Apple MacBook Pro (MA611LL/A) Notebook...................$500usd
Apple MacBook (MA254LL/A) Mac Notebook...................$400usd
Apple iBook G3 (M7698LL/A) Mac Notebook..................$550usd
Apple MacBook Pro (MA609LL/A) Notebook...................$500usd
Apple MacBook Pro (MA600LLA) Notebook....................$400usd
Apple MacBook Pro (MA610LL/A) Notebook...................$700usd
Apple Macbook Pro (885909119400) Notebook................$750usd

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240

SONY VAIO P4 LAPTOP:

Sony VGN-TZ170N/B PC Notebook cost $600usd
Sony VAIO VGN-TZ190N PC Notebook cost 550usd
Sony VGN-CR320E/P PC Notebook cost $550usd
Sony VAIO(R) VGN-NR260ES 15.4inch Notebook - Granite Silver PC Notebook cost $560usd
Sony 15.4inch VAIO VGN-FZ260E/B Notebook cost $600usd
Sony VAIO CR320E/T T7250 2.0G 2GB 250GB DVDRW 14.1-WXGA XBE WVHP CROC PC Notebook cost $650usd
Sony VGN-CR320E/N PC Notebook cost $550usd
SONY AR610E NB C2D/1.8 2GB-200GB 17WXGA DVDRW WVHP PC Notebook cost $700usd


HP LAPTOP:
Hewlett Packard Pavilion dv9260us PC Notebook......................$600usd
Hewlett Packard Pavilion dv8140us EP407UA PC Notebook............$550usd
Hewlett Packard Pavilion dv6265us PC Notebook......................$500usd


ACER FERRARI P4 LAPTOP:

Acer Ferrari 5005WLMi PC Notebook.....................$600usd
Acer Ferrari 4005WLMi PC Notebook......................$500usd
Acer Ferrari 1004WTMi PC Notebook.......................$450usd

Interested Buyers Should Contact us For More details to Buy the products ,
Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com


Posted by borbit on Tuesday, 05.13.08 @ 05:44pm | #3336


Company Name:CHIEF BORBIT ELECTRONICS STORES LTD
Registered No.04023562

Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com

Your satisfatory is our goal !

We are well experienced importer for all kind of consumer electronics such as
cell phone, mp3 mp4 players, camera, cell phone accessories, iPod accessories
and PSP accessories. We have our buying office in Hong Kong with a crew of buyers
and quality controlers to ensure our items in latest fashion and good quality before
they ship over to our warehouse in republic of benin.

Quick response and ready to help is the principle of our sales team. If you can't find
what you want at our store, just contact us, we will search it for you. Any techinal needs
just email us we have our specialist ready to answer your questions.

We treat all our customers as our biggest customers, we don't mind you just buy 99 cents from us,
we still treat you with our 100% effort, we believe in good quality service is as important as good
quality products.

Just try to shop with us, you will feel both the quality on the products and the service.

Wholesale customers after registeration please email for setting up wholesaler account.
We also provide FREE DELIVERY in some area at LA, Email for details.

Nokia N96@350
Nokia N95 @250usd
Nokia N93i@ 220usd
Nokia n93 @ 200usd
Nokia N92 @ 180usd
Nokia N91 8GB@185usd
Nokia N80 @180usd
Nokia N76 @160usd
Nokia N75 @130usd
Nokia N73 @120usd
Nokia N70 @100usd
Nokia E90 Communicator @200usd
Nokia E65 @ 130usd
Nokia E61i @120usd
Nokia 8801 @ 150usd
Nokia 8800 Sirocco @200usd
Nokia 770 Internet @ 160usd

LG KE800 Special Edition @ 200usd
LG KE970 Shine 3G @ 180usd
LG KE770 Shine@ 150usd
LG KE850 Prada @250usd

iMate Ultimate 5150 @200usd
iMate SP Jam @170usd
iMate PDAL @ 200usd
iMate Jaq 4 @210usd
iMate Jaq 3 @200usd
iMate JAQ @ 180usd
iMate JAM @ 150usd

Apple iPhone 4GB Unlocked @ 200usd
Apple iPhone 8GB Unlocked @250usd

Blackberry 8800 "indigo" (unlocked) @ 220usd
Blackberry 8700g @ 180usd
Blackberry 8100 Pearl Cingular (unlocked) @160usd

ETEN X500 Glofiish @ 180usd
ETEN M700 Glofiish 2 @200usd
ETEN M600 @ 150usd
ETEN G500 @ 120usd
E-TEN X800 Glofiish @ 250usd

Okwap Sanrio hello kitty i885 mobile @ 230usd
Okwap i885 Sanrio Hello Kitty Cell @ 210 usd

TomTom GO GPS Car Navigation System @ 200usd
TomTom Go 910 GPS Car Navigation System @150usd
TomTom Go 510 GPS @ 180usd

Motorola RIZR Z8 @ 250usd
Motorola RIZR Z6 @ 230usd
Motorola RAZR V3XX Unlocked @ 180usd
Motorola RAZR maxx V6 Ferrari Challenge @ 220usd
Motorola RAZR Maxx @ 200usd
Motorola Q9 @ 300usd
Motorola KRZR K3 @ 280usd
Motorola KRZR @ 200usd
Motorola E6 @ 180usd

OQO model 01+ Ultra PC @400usd
OQO model 02 Ultra PC (pre-order) @420usd
OQO model 02 Ultra PC (pre-order) @ 410usd

Palm Treo 750v (open box) @260usd
Palm Treo 750 Unlocked Cingular @220usd
Palm Treo 680 (Graphite) @ 180usd

Samsung Z720 @ 150usd
Samsung Ultra Edition 5.9 @ 270usd
Samsung SGH-P310 @ 155usd
Samsung SGH-i830 @ 190usd
Samsung SGH-i718 @ 190uad
Samsung SGH-i600 @180usd
Samsung SGH-F700 @ 200usd
Samsung SGH-B600 @ 300usd
Samsung i760 @ 250uad
Samsung F500 @ 200uad
Samsung D900 @ 130uad
Samsung BlackJack SGH-i607 Unlocked @ 220usd
Samsung BD-P1000 Blu-Ray Disc Player @ 250usd

Sony Ericsson W950i @ 240uad
Sony Ericsson W880i Walkman Phone @ 230usd
Sony Ericsson W850i @ 215usd
Sony Ericsson W810i Walkman Phone @ 150usd
Sony Ericsson W660i @ 180usd
Sony Ericsson M600i @ 250usd
Sony Ericsson K810i Cyber-shot Digital Camera Phone @ 280usd
Sony Ericsson K800i @ 170usd
Sony Ericcson P990i @ 300usd

HTC PHONES
Cingular 8125 @ 160usd
Cingular 8525 @ 170usd
HTC TyTn @ 180USD
HTC 9100 Tmobile MDA (unlocked) @ 170usd
HTC Advantage Pocket PC (Athena) @ 380usd
HTC Kaiser @ 210usd
HTC P3300 @ 200usd
HTC P3350 @ 220usd
HTC P3400 @ 215usd
HTC P3600 (Trinity) @ 220usd
HTC P6500 (HTC Sirius) 250usd

MP3
All these are brand new, sealed in an original complete company box.
and also we have the one of 128 Mega Bytes
/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/; 512 Mega Bytes
and so on.............
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
San Disk SDMX1-1024-A18 SanDisk 1GB MP3 Player:::::::::70usd
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
Kanguru MP3- 1GB:::::::::::::::::::::::::::::::::::::::49usd
Mymusix MP3 Player with 1GB Sandisk SD card::::::::::::48usd
Samsung Nexus 50 XM Radio + MP3 (1GB) YP-X5Z:::::::::::190usd
Kanguru Micro MP3 Pro / 1GB / FM Tuner / MP3 Player::::50usd
MP3/Digital Player NANO MP3 1GB Creative:::::::::::::::50usd
RCA RD-2317FM MP3 1Gb MP3 Player with FM Transmitter:::140usd
All these are brand new, sealed in an original complete company box
still at list but not be listed now.
MP4 PORTABL
Epson P40000MSV 80GB MP4 Portable Media Player:::::::::250usd
Neuros Audio 442 Portable MP3 and MP4 Media Player:::::200usd
EPSON - Epson p40000msv 80gb mp4 portable media player:450usd


HP iPAQ rx5915 @ 220usd
HP iPAQ HW6945 GPS @ 210usd
HP 6915 @ 250usd

CECT IP1000 @ 200usd
Fujitsu Siemens LOOX T830 @ 300usd
Fujitsu Siemens LOOX N560 @ 2500usd
Gigabyte G-Smart i @ 170usd
Gigabyte G-Smart i120 @ 220usd
Gigabyte G-Smart i300 @ 240usd

Pioneer AVIC-S1 @ $350usd
Pioneer AVIC-Z1 Navigation AVICZ @ $600usd
Pioneer AVIC-N3 Multimedia Navigation Receiver @ $550
Pioneer Avic-z1 Dvd Player Navigation System @ $500usd
Pioneer AVIC-D1 / AVICD1 @ $400usd
Pioneer AVIC-D2 DVD Navigation System @ $400USD

GPS BLUETOOTH RECEIVER
GNS 5843 GPS RDS TMC Bluetooth Receiver:::::::::::::::::::::::::230USD
Holux GPS Bluetooth Receiver, Dongle & DELORME Maps 06::::::::::120USD
Pharos GPS Receiver with Bluetooth Wireless Technology::::::::::100usd
Navman GPS 4410 Bluetooth Receiver::::::::::::::::::::::::::::::220usd
TOMTOM Navigator 5 Wireless Bluetooth GPS:::::::::::::::::::::::260usd
Garmin 010-00378-00 GPS-10 Bluetooth® Enabled GPS:::::::::::::::250usd


PANASONIC PLASMA TV
Panasonic TH-37PHD8UK Plasma $350
Panasonic TH-42PWD8UK Plasma $600
Panasonic TH-42PHD8UK Plasma $500
Panasonic TH-42PD50U EDTV $ 450
Panasonic TH-42PX50U Plasma $650
Panasonic TH-50PX50U Plasma $700
panasonic TH-65PHD8UK Plasma $900

SONY PLASMA TV
SONY FWD-42PV1 Plasma Display $500
Sony PFM-42X1 Plasma Display $550
Sony FWD-50PX2 Plasma Display $700

SAMSUNG PLASMA TV
SAMSUNG HPP3761 Plasma TV $610
Samsung PPM42M5S Plasma Display $505
Samsung SPP4251 Plasma TV $700
Samsung PPM42M5H Plasma Display $550
Samsung HPR4252 Plasma $680
Samsung HPR4262 Plasma TV $450
Samsung HPR4272 Plasma $560
Samsung PPM50M5H Plasma Display $870
Samsung HPR5052 Plasma $670
Samsung HPR5072 Plasma $780
Samsung HPP5581 Plasma TV $780
Samsung PPM63H3Q Plasma Display $700
Samsung HPR6372 Plasma $820

HITACHI PLASMA TV
Hitachi CMP4211u Plasma $850
Hitachi CMP4212u Plasma $350
Hitachi 42HDF52 Plasma HDTV $400
Hitachi 42HDT52 Plasma TV $440
Hitachi 55HDS52 Plasma HDTV $480
Hitachi 55HDT52 Plasma TV $650
Hitachi CMP-55HDM71 Plasma $420

AOC ENVISION PLASMA TV
AOC Envision A42W64 Plasma $400

MAXENT PLASMA TV
Maxent MX-42VM7 Plasma EDTV $370
Maxent MX-50X2 Plasma $300

GAME CONSOLE
X box 360 Premium console ... ..200usd
Xbox 360 pal verrsion..........$170usd
Nintendowii.....................150usd
Nintendo wifi..........$220usd
Ps2.............................160usd
Playstation 3 20GB..............150usd
Playstation 3 60GB..............290usd

APPLE LAPTOP
Apple MacBook (MA700LL/A) Mac Notebook...................$450usd
Apple MacBook Pro (MA611LL/A) Notebook...................$500usd
Apple MacBook (MA254LL/A) Mac Notebook...................$400usd
Apple iBook G3 (M7698LL/A) Mac Notebook..................$550usd
Apple MacBook Pro (MA609LL/A) Notebook...................$500usd
Apple MacBook Pro (MA600LLA) Notebook....................$400usd
Apple MacBook Pro (MA610LL/A) Notebook...................$700usd
Apple Macbook Pro (885909119400) Notebook................$750usd

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240

SONY VAIO P4 LAPTOP:

Sony VGN-TZ170N/B PC Notebook cost $600usd
Sony VAIO VGN-TZ190N PC Notebook cost 550usd
Sony VGN-CR320E/P PC Notebook cost $550usd
Sony VAIO(R) VGN-NR260ES 15.4inch Notebook - Granite Silver PC Notebook cost $560usd
Sony 15.4inch VAIO VGN-FZ260E/B Notebook cost $600usd
Sony VAIO CR320E/T T7250 2.0G 2GB 250GB DVDRW 14.1-WXGA XBE WVHP CROC PC Notebook cost $650usd
Sony VGN-CR320E/N PC Notebook cost $550usd
SONY AR610E NB C2D/1.8 2GB-200GB 17WXGA DVDRW WVHP PC Notebook cost $700usd


HP LAPTOP:
Hewlett Packard Pavilion dv9260us PC Notebook......................$600usd
Hewlett Packard Pavilion dv8140us EP407UA PC Notebook............$550usd
Hewlett Packard Pavilion dv6265us PC Notebook......................$500usd


ACER FERRARI P4 LAPTOP:

Acer Ferrari 5005WLMi PC Notebook.....................$600usd
Acer Ferrari 4005WLMi PC Notebook......................$500usd
Acer Ferrari 1004WTMi PC Notebook.......................$450usd

Interested Buyers Should Contact us For More details to Buy the products ,
Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com


Posted by borbit on Tuesday, 05.13.08 @ 05:46pm | #3337


Company Name:CHIEF BORBIT ELECTRONICS STORES LTD
Registered No.04023562

Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com

Your satisfatory is our goal !

We are well experienced importer for all kind of consumer electronics such as
cell phone, mp3 mp4 players, camera, cell phone accessories, iPod accessories
and PSP accessories. We have our buying office in Hong Kong with a crew of buyers
and quality controlers to ensure our items in latest fashion and good quality before
they ship over to our warehouse in republic of benin.

Quick response and ready to help is the principle of our sales team. If you can't find
what you want at our store, just contact us, we will search it for you. Any techinal needs
just email us we have our specialist ready to answer your questions.

We treat all our customers as our biggest customers, we don't mind you just buy 99 cents from us,
we still treat you with our 100% effort, we believe in good quality service is as important as good
quality products.

Just try to shop with us, you will feel both the quality on the products and the service.

Wholesale customers after registeration please email for setting up wholesaler account.
We also provide FREE DELIVERY in some area at LA, Email for details.

Nokia N96@350
Nokia N95 @250usd
Nokia N93i@ 220usd
Nokia n93 @ 200usd
Nokia N92 @ 180usd
Nokia N91 8GB@185usd
Nokia N80 @180usd
Nokia N76 @160usd
Nokia N75 @130usd
Nokia N73 @120usd
Nokia N70 @100usd
Nokia E90 Communicator @200usd
Nokia E65 @ 130usd
Nokia E61i @120usd
Nokia 8801 @ 150usd
Nokia 8800 Sirocco @200usd
Nokia 770 Internet @ 160usd

LG KE800 Special Edition @ 200usd
LG KE970 Shine 3G @ 180usd
LG KE770 Shine@ 150usd
LG KE850 Prada @250usd

iMate Ultimate 5150 @200usd
iMate SP Jam @170usd
iMate PDAL @ 200usd
iMate Jaq 4 @210usd
iMate Jaq 3 @200usd
iMate JAQ @ 180usd
iMate JAM @ 150usd

Apple iPhone 4GB Unlocked @ 200usd
Apple iPhone 8GB Unlocked @250usd

Blackberry 8800 "indigo" (unlocked) @ 220usd
Blackberry 8700g @ 180usd
Blackberry 8100 Pearl Cingular (unlocked) @160usd

ETEN X500 Glofiish @ 180usd
ETEN M700 Glofiish 2 @200usd
ETEN M600 @ 150usd
ETEN G500 @ 120usd
E-TEN X800 Glofiish @ 250usd

Okwap Sanrio hello kitty i885 mobile @ 230usd
Okwap i885 Sanrio Hello Kitty Cell @ 210 usd

TomTom GO GPS Car Navigation System @ 200usd
TomTom Go 910 GPS Car Navigation System @150usd
TomTom Go 510 GPS @ 180usd

Motorola RIZR Z8 @ 250usd
Motorola RIZR Z6 @ 230usd
Motorola RAZR V3XX Unlocked @ 180usd
Motorola RAZR maxx V6 Ferrari Challenge @ 220usd
Motorola RAZR Maxx @ 200usd
Motorola Q9 @ 300usd
Motorola KRZR K3 @ 280usd
Motorola KRZR @ 200usd
Motorola E6 @ 180usd

OQO model 01+ Ultra PC @400usd
OQO model 02 Ultra PC (pre-order) @420usd
OQO model 02 Ultra PC (pre-order) @ 410usd

Palm Treo 750v (open box) @260usd
Palm Treo 750 Unlocked Cingular @220usd
Palm Treo 680 (Graphite) @ 180usd

Samsung Z720 @ 150usd
Samsung Ultra Edition 5.9 @ 270usd
Samsung SGH-P310 @ 155usd
Samsung SGH-i830 @ 190usd
Samsung SGH-i718 @ 190uad
Samsung SGH-i600 @180usd
Samsung SGH-F700 @ 200usd
Samsung SGH-B600 @ 300usd
Samsung i760 @ 250uad
Samsung F500 @ 200uad
Samsung D900 @ 130uad
Samsung BlackJack SGH-i607 Unlocked @ 220usd
Samsung BD-P1000 Blu-Ray Disc Player @ 250usd

Sony Ericsson W950i @ 240uad
Sony Ericsson W880i Walkman Phone @ 230usd
Sony Ericsson W850i @ 215usd
Sony Ericsson W810i Walkman Phone @ 150usd
Sony Ericsson W660i @ 180usd
Sony Ericsson M600i @ 250usd
Sony Ericsson K810i Cyber-shot Digital Camera Phone @ 280usd
Sony Ericsson K800i @ 170usd
Sony Ericcson P990i @ 300usd

HTC PHONES
Cingular 8125 @ 160usd
Cingular 8525 @ 170usd
HTC TyTn @ 180USD
HTC 9100 Tmobile MDA (unlocked) @ 170usd
HTC Advantage Pocket PC (Athena) @ 380usd
HTC Kaiser @ 210usd
HTC P3300 @ 200usd
HTC P3350 @ 220usd
HTC P3400 @ 215usd
HTC P3600 (Trinity) @ 220usd
HTC P6500 (HTC Sirius) 250usd

MP3
All these are brand new, sealed in an original complete company box.
and also we have the one of 128 Mega Bytes
/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/; 512 Mega Bytes
and so on.............
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
San Disk SDMX1-1024-A18 SanDisk 1GB MP3 Player:::::::::70usd
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
Kanguru MP3- 1GB:::::::::::::::::::::::::::::::::::::::49usd
Mymusix MP3 Player with 1GB Sandisk SD card::::::::::::48usd
Samsung Nexus 50 XM Radio + MP3 (1GB) YP-X5Z:::::::::::190usd
Kanguru Micro MP3 Pro / 1GB / FM Tuner / MP3 Player::::50usd
MP3/Digital Player NANO MP3 1GB Creative:::::::::::::::50usd
RCA RD-2317FM MP3 1Gb MP3 Player with FM Transmitter:::140usd
All these are brand new, sealed in an original complete company box
still at list but not be listed now.
MP4 PORTABL
Epson P40000MSV 80GB MP4 Portable Media Player:::::::::250usd
Neuros Audio 442 Portable MP3 and MP4 Media Player:::::200usd
EPSON - Epson p40000msv 80gb mp4 portable media player:450usd


HP iPAQ rx5915 @ 220usd
HP iPAQ HW6945 GPS @ 210usd
HP 6915 @ 250usd

CECT IP1000 @ 200usd
Fujitsu Siemens LOOX T830 @ 300usd
Fujitsu Siemens LOOX N560 @ 2500usd
Gigabyte G-Smart i @ 170usd
Gigabyte G-Smart i120 @ 220usd
Gigabyte G-Smart i300 @ 240usd

Pioneer AVIC-S1 @ $350usd
Pioneer AVIC-Z1 Navigation AVICZ @ $600usd
Pioneer AVIC-N3 Multimedia Navigation Receiver @ $550
Pioneer Avic-z1 Dvd Player Navigation System @ $500usd
Pioneer AVIC-D1 / AVICD1 @ $400usd
Pioneer AVIC-D2 DVD Navigation System @ $400USD

GPS BLUETOOTH RECEIVER
GNS 5843 GPS RDS TMC Bluetooth Receiver:::::::::::::::::::::::::230USD
Holux GPS Bluetooth Receiver, Dongle & DELORME Maps 06::::::::::120USD
Pharos GPS Receiver with Bluetooth Wireless Technology::::::::::100usd
Navman GPS 4410 Bluetooth Receiver::::::::::::::::::::::::::::::220usd
TOMTOM Navigator 5 Wireless Bluetooth GPS:::::::::::::::::::::::260usd
Garmin 010-00378-00 GPS-10 Bluetooth® Enabled GPS:::::::::::::::250usd


PANASONIC PLASMA TV
Panasonic TH-37PHD8UK Plasma $350
Panasonic TH-42PWD8UK Plasma $600
Panasonic TH-42PHD8UK Plasma $500
Panasonic TH-42PD50U EDTV $ 450
Panasonic TH-42PX50U Plasma $650
Panasonic TH-50PX50U Plasma $700
panasonic TH-65PHD8UK Plasma $900

SONY PLASMA TV
SONY FWD-42PV1 Plasma Display $500
Sony PFM-42X1 Plasma Display $550
Sony FWD-50PX2 Plasma Display $700

SAMSUNG PLASMA TV
SAMSUNG HPP3761 Plasma TV $610
Samsung PPM42M5S Plasma Display $505
Samsung SPP4251 Plasma TV $700
Samsung PPM42M5H Plasma Display $550
Samsung HPR4252 Plasma $680
Samsung HPR4262 Plasma TV $450
Samsung HPR4272 Plasma $560
Samsung PPM50M5H Plasma Display $870
Samsung HPR5052 Plasma $670
Samsung HPR5072 Plasma $780
Samsung HPP5581 Plasma TV $780
Samsung PPM63H3Q Plasma Display $700
Samsung HPR6372 Plasma $820

HITACHI PLASMA TV
Hitachi CMP4211u Plasma $850
Hitachi CMP4212u Plasma $350
Hitachi 42HDF52 Plasma HDTV $400
Hitachi 42HDT52 Plasma TV $440
Hitachi 55HDS52 Plasma HDTV $480
Hitachi 55HDT52 Plasma TV $650
Hitachi CMP-55HDM71 Plasma $420

AOC ENVISION PLASMA TV
AOC Envision A42W64 Plasma $400

MAXENT PLASMA TV
Maxent MX-42VM7 Plasma EDTV $370
Maxent MX-50X2 Plasma $300

GAME CONSOLE
X box 360 Premium console ... ..200usd
Xbox 360 pal verrsion..........$170usd
Nintendowii.....................150usd
Nintendo wifi..........$220usd
Ps2.............................160usd
Playstation 3 20GB..............150usd
Playstation 3 60GB..............290usd

APPLE LAPTOP
Apple MacBook (MA700LL/A) Mac Notebook...................$450usd
Apple MacBook Pro (MA611LL/A) Notebook...................$500usd
Apple MacBook (MA254LL/A) Mac Notebook...................$400usd
Apple iBook G3 (M7698LL/A) Mac Notebook..................$550usd
Apple MacBook Pro (MA609LL/A) Notebook...................$500usd
Apple MacBook Pro (MA600LLA) Notebook....................$400usd
Apple MacBook Pro (MA610LL/A) Notebook...................$700usd
Apple Macbook Pro (885909119400) Notebook................$750usd

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240

SONY VAIO P4 LAPTOP:

Sony VGN-TZ170N/B PC Notebook cost $600usd
Sony VAIO VGN-TZ190N PC Notebook cost 550usd
Sony VGN-CR320E/P PC Notebook cost $550usd
Sony VAIO(R) VGN-NR260ES 15.4inch Notebook - Granite Silver PC Notebook cost $560usd
Sony 15.4inch VAIO VGN-FZ260E/B Notebook cost $600usd
Sony VAIO CR320E/T T7250 2.0G 2GB 250GB DVDRW 14.1-WXGA XBE WVHP CROC PC Notebook cost $650usd
Sony VGN-CR320E/N PC Notebook cost $550usd
SONY AR610E NB C2D/1.8 2GB-200GB 17WXGA DVDRW WVHP PC Notebook cost $700usd


HP LAPTOP:
Hewlett Packard Pavilion dv9260us PC Notebook......................$600usd
Hewlett Packard Pavilion dv8140us EP407UA PC Notebook............$550usd
Hewlett Packard Pavilion dv6265us PC Notebook......................$500usd


ACER FERRARI P4 LAPTOP:

Acer Ferrari 5005WLMi PC Notebook.....................$600usd
Acer Ferrari 4005WLMi PC Notebook......................$500usd
Acer Ferrari 1004WTMi PC Notebook.......................$450usd

Interested Buyers Should Contact us For More details to Buy the products ,
Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com


Posted by borbit on Tuesday, 05.13.08 @ 05:54pm | #3338


Company Name:CHIEF BORBIT ELECTRONICS STORES LTD
Registered No.04023562

Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com

Your satisfatory is our goal !

We are well experienced importer for all kind of consumer electronics such as
cell phone, mp3 mp4 players, camera, cell phone accessories, iPod accessories
and PSP accessories. We have our buying office in Hong Kong with a crew of buyers
and quality controlers to ensure our items in latest fashion and good quality before
they ship over to our warehouse in republic of benin.

Quick response and ready to help is the principle of our sales team. If you can't find
what you want at our store, just contact us, we will search it for you. Any techinal needs
just email us we have our specialist ready to answer your questions.

We treat all our customers as our biggest customers, we don't mind you just buy 99 cents from us,
we still treat you with our 100% effort, we believe in good quality service is as important as good
quality products.

Just try to shop with us, you will feel both the quality on the products and the service.

Wholesale customers after registeration please email for setting up wholesaler account.
We also provide FREE DELIVERY in some area at LA, Email for details.

Nokia N96@350
Nokia N95 @250usd
Nokia N93i@ 220usd
Nokia n93 @ 200usd
Nokia N92 @ 180usd
Nokia N91 8GB@185usd
Nokia N80 @180usd
Nokia N76 @160usd
Nokia N75 @130usd
Nokia N73 @120usd
Nokia N70 @100usd
Nokia E90 Communicator @200usd
Nokia E65 @ 130usd
Nokia E61i @120usd
Nokia 8801 @ 150usd
Nokia 8800 Sirocco @200usd
Nokia 770 Internet @ 160usd

LG KE800 Special Edition @ 200usd
LG KE970 Shine 3G @ 180usd
LG KE770 Shine@ 150usd
LG KE850 Prada @250usd

iMate Ultimate 5150 @200usd
iMate SP Jam @170usd
iMate PDAL @ 200usd
iMate Jaq 4 @210usd
iMate Jaq 3 @200usd
iMate JAQ @ 180usd
iMate JAM @ 150usd

Apple iPhone 4GB Unlocked @ 200usd
Apple iPhone 8GB Unlocked @250usd

Blackberry 8800 "indigo" (unlocked) @ 220usd
Blackberry 8700g @ 180usd
Blackberry 8100 Pearl Cingular (unlocked) @160usd

ETEN X500 Glofiish @ 180usd
ETEN M700 Glofiish 2 @200usd
ETEN M600 @ 150usd
ETEN G500 @ 120usd
E-TEN X800 Glofiish @ 250usd

Okwap Sanrio hello kitty i885 mobile @ 230usd
Okwap i885 Sanrio Hello Kitty Cell @ 210 usd

TomTom GO GPS Car Navigation System @ 200usd
TomTom Go 910 GPS Car Navigation System @150usd
TomTom Go 510 GPS @ 180usd

Motorola RIZR Z8 @ 250usd
Motorola RIZR Z6 @ 230usd
Motorola RAZR V3XX Unlocked @ 180usd
Motorola RAZR maxx V6 Ferrari Challenge @ 220usd
Motorola RAZR Maxx @ 200usd
Motorola Q9 @ 300usd
Motorola KRZR K3 @ 280usd
Motorola KRZR @ 200usd
Motorola E6 @ 180usd

OQO model 01+ Ultra PC @400usd
OQO model 02 Ultra PC (pre-order) @420usd
OQO model 02 Ultra PC (pre-order) @ 410usd

Palm Treo 750v (open box) @260usd
Palm Treo 750 Unlocked Cingular @220usd
Palm Treo 680 (Graphite) @ 180usd

Samsung Z720 @ 150usd
Samsung Ultra Edition 5.9 @ 270usd
Samsung SGH-P310 @ 155usd
Samsung SGH-i830 @ 190usd
Samsung SGH-i718 @ 190uad
Samsung SGH-i600 @180usd
Samsung SGH-F700 @ 200usd
Samsung SGH-B600 @ 300usd
Samsung i760 @ 250uad
Samsung F500 @ 200uad
Samsung D900 @ 130uad
Samsung BlackJack SGH-i607 Unlocked @ 220usd
Samsung BD-P1000 Blu-Ray Disc Player @ 250usd

Sony Ericsson W950i @ 240uad
Sony Ericsson W880i Walkman Phone @ 230usd
Sony Ericsson W850i @ 215usd
Sony Ericsson W810i Walkman Phone @ 150usd
Sony Ericsson W660i @ 180usd
Sony Ericsson M600i @ 250usd
Sony Ericsson K810i Cyber-shot Digital Camera Phone @ 280usd
Sony Ericsson K800i @ 170usd
Sony Ericcson P990i @ 300usd

HTC PHONES
Cingular 8125 @ 160usd
Cingular 8525 @ 170usd
HTC TyTn @ 180USD
HTC 9100 Tmobile MDA (unlocked) @ 170usd
HTC Advantage Pocket PC (Athena) @ 380usd
HTC Kaiser @ 210usd
HTC P3300 @ 200usd
HTC P3350 @ 220usd
HTC P3400 @ 215usd
HTC P3600 (Trinity) @ 220usd
HTC P6500 (HTC Sirius) 250usd

MP3
All these are brand new, sealed in an original complete company box.
and also we have the one of 128 Mega Bytes
/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/;/; 512 Mega Bytes
and so on.............
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
San Disk SDMX1-1024-A18 SanDisk 1GB MP3 Player:::::::::70usd
Kanguru Solutions U2-KMP3-1G Kanguru MP3- 1GB::::::::::60usd
Kanguru MP3- 1GB:::::::::::::::::::::::::::::::::::::::49usd
Mymusix MP3 Player with 1GB Sandisk SD card::::::::::::48usd
Samsung Nexus 50 XM Radio + MP3 (1GB) YP-X5Z:::::::::::190usd
Kanguru Micro MP3 Pro / 1GB / FM Tuner / MP3 Player::::50usd
MP3/Digital Player NANO MP3 1GB Creative:::::::::::::::50usd
RCA RD-2317FM MP3 1Gb MP3 Player with FM Transmitter:::140usd
All these are brand new, sealed in an original complete company box
still at list but not be listed now.
MP4 PORTABL
Epson P40000MSV 80GB MP4 Portable Media Player:::::::::250usd
Neuros Audio 442 Portable MP3 and MP4 Media Player:::::200usd
EPSON - Epson p40000msv 80gb mp4 portable media player:450usd


HP iPAQ rx5915 @ 220usd
HP iPAQ HW6945 GPS @ 210usd
HP 6915 @ 250usd

CECT IP1000 @ 200usd
Fujitsu Siemens LOOX T830 @ 300usd
Fujitsu Siemens LOOX N560 @ 2500usd
Gigabyte G-Smart i @ 170usd
Gigabyte G-Smart i120 @ 220usd
Gigabyte G-Smart i300 @ 240usd

Pioneer AVIC-S1 @ $350usd
Pioneer AVIC-Z1 Navigation AVICZ @ $600usd
Pioneer AVIC-N3 Multimedia Navigation Receiver @ $550
Pioneer Avic-z1 Dvd Player Navigation System @ $500usd
Pioneer AVIC-D1 / AVICD1 @ $400usd
Pioneer AVIC-D2 DVD Navigation System @ $400USD

GPS BLUETOOTH RECEIVER
GNS 5843 GPS RDS TMC Bluetooth Receiver:::::::::::::::::::::::::230USD
Holux GPS Bluetooth Receiver, Dongle & DELORME Maps 06::::::::::120USD
Pharos GPS Receiver with Bluetooth Wireless Technology::::::::::100usd
Navman GPS 4410 Bluetooth Receiver::::::::::::::::::::::::::::::220usd
TOMTOM Navigator 5 Wireless Bluetooth GPS:::::::::::::::::::::::260usd
Garmin 010-00378-00 GPS-10 Bluetooth® Enabled GPS:::::::::::::::250usd


PANASONIC PLASMA TV
Panasonic TH-37PHD8UK Plasma $350
Panasonic TH-42PWD8UK Plasma $600
Panasonic TH-42PHD8UK Plasma $500
Panasonic TH-42PD50U EDTV $ 450
Panasonic TH-42PX50U Plasma $650
Panasonic TH-50PX50U Plasma $700
panasonic TH-65PHD8UK Plasma $900

SONY PLASMA TV
SONY FWD-42PV1 Plasma Display $500
Sony PFM-42X1 Plasma Display $550
Sony FWD-50PX2 Plasma Display $700

SAMSUNG PLASMA TV
SAMSUNG HPP3761 Plasma TV $610
Samsung PPM42M5S Plasma Display $505
Samsung SPP4251 Plasma TV $700
Samsung PPM42M5H Plasma Display $550
Samsung HPR4252 Plasma $680
Samsung HPR4262 Plasma TV $450
Samsung HPR4272 Plasma $560
Samsung PPM50M5H Plasma Display $870
Samsung HPR5052 Plasma $670
Samsung HPR5072 Plasma $780
Samsung HPP5581 Plasma TV $780
Samsung PPM63H3Q Plasma Display $700
Samsung HPR6372 Plasma $820

HITACHI PLASMA TV
Hitachi CMP4211u Plasma $850
Hitachi CMP4212u Plasma $350
Hitachi 42HDF52 Plasma HDTV $400
Hitachi 42HDT52 Plasma TV $440
Hitachi 55HDS52 Plasma HDTV $480
Hitachi 55HDT52 Plasma TV $650
Hitachi CMP-55HDM71 Plasma $420

AOC ENVISION PLASMA TV
AOC Envision A42W64 Plasma $400

MAXENT PLASMA TV
Maxent MX-42VM7 Plasma EDTV $370
Maxent MX-50X2 Plasma $300

GAME CONSOLE
X box 360 Premium console ... ..200usd
Xbox 360 pal verrsion..........$170usd
Nintendowii.....................150usd
Nintendo wifi..........$220usd
Ps2.............................160usd
Playstation 3 20GB..............150usd
Playstation 3 60GB..............290usd

APPLE LAPTOP
Apple MacBook (MA700LL/A) Mac Notebook...................$450usd
Apple MacBook Pro (MA611LL/A) Notebook...................$500usd
Apple MacBook (MA254LL/A) Mac Notebook...................$400usd
Apple iBook G3 (M7698LL/A) Mac Notebook..................$550usd
Apple MacBook Pro (MA609LL/A) Notebook...................$500usd
Apple MacBook Pro (MA600LLA) Notebook....................$400usd
Apple MacBook Pro (MA610LL/A) Notebook...................$700usd
Apple Macbook Pro (885909119400) Notebook................$750usd

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240

SONY VAIO P4 LAPTOP:

Sony VGN-TZ170N/B PC Notebook cost $600usd
Sony VAIO VGN-TZ190N PC Notebook cost 550usd
Sony VGN-CR320E/P PC Notebook cost $550usd
Sony VAIO(R) VGN-NR260ES 15.4inch Notebook - Granite Silver PC Notebook cost $560usd
Sony 15.4inch VAIO VGN-FZ260E/B Notebook cost $600usd
Sony VAIO CR320E/T T7250 2.0G 2GB 250GB DVDRW 14.1-WXGA XBE WVHP CROC PC Notebook cost $650usd
Sony VGN-CR320E/N PC Notebook cost $550usd
SONY AR610E NB C2D/1.8 2GB-200GB 17WXGA DVDRW WVHP PC Notebook cost $700usd


HP LAPTOP:
Hewlett Packard Pavilion dv9260us PC Notebook......................$600usd
Hewlett Packard Pavilion dv8140us EP407UA PC Notebook............$550usd
Hewlett Packard Pavilion dv6265us PC Notebook......................$500usd


ACER FERRARI P4 LAPTOP:

Acer Ferrari 5005WLMi PC Notebook.....................$600usd
Acer Ferrari 4005WLMi PC Notebook......................$500usd
Acer Ferrari 1004WTMi PC Notebook.......................$450usd

Interested Buyers Should Contact us For More details to Buy the products ,
Contact : Email: borbit_electronics@yahoo.com
borbit_electronics@hotmail.com
bright_electronics59@mail2world.com


Posted by borbit on Tuesday, 05.13.08 @ 05:55pm | #3339

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3341

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3342

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3343

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3344

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3345

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3346

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3347

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3348

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3349

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3350

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3351

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3352

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3353

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3354

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:17am | #3355

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:18am | #3356

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:18am | #3357

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:18am | #3358

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:18am | #3359

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:18am | #3360

spamming sucks on this page.... epecially the one before this post..... spammers suck

Posted by spam (spam)on Wednesday, 05.14.08 @ 09:18am | #3361

Great tutorial

Posted by cdeire on Thursday, 05.15.08 @ 01:33am | #3362

testing

Posted by DaZZ (www.www.com)on Thursday, 05.15.08 @ 11:24am | #3363

Great tutorial! Thanks a lot.

Posted by Bryan on Friday, 05.16.08 @ 08:07pm | #3364

/;)

Posted by Mike on Friday, 05.16.08 @ 08:08pm | #3365

Excellent script, and it is working very well on my site.

However, many of the commenters are writing giant novels in their posts.

I want to find a way to restrict, or limit, the number of characters or words in each comment.

Anyone got any ideas?

Thanks.

Posted by Ben (navajotimes.com)on Monday, 05.19.08 @ 09:07am | #3368

Wow, I found my own solution to my post about limiting comment length.

Here it is:

// test for maximum limit of characters in comment

if(isset($message{31})) {
echo '<b>ERROR: Your comment cannot be more than (500) characters long.</b><p>Please go back and shorten your comment to less than 500 characters.<br />'/;
} else {

$sendcomment = mysql_query("INSERT INTO comments SET tutorialid='$tutid2', name='$name', url='$url', email='$email', comment='$message', date=now()")/;

Posted by Ben (navajotimes.com)on Monday, 05.19.08 @ 09:21am | #3369

hey

Posted by gus on Saturday, 05.24.08 @ 08:13pm | #3374

EXCLUSIVE WORLD MOBILE TELECOMMUNICATION LIMITED.
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

CURRENT PRICE LISTED BELOW:


E-mail:..msgr192@live.com

E-mail:..msgr192@inmail24.com

E-mail:.raymondbabs192@gmail.com



Apple i-phone 16gb,,,,,,,,,,,,,,,,,,$270usd
Apple iPhone 8GB Version 1.1.4 + Turbo SIM,,,,,,,$220usd
Apple i-phone 4gb,,,,,,,,,,,,,,,,,,,$180usd



Sidekick Lx,,,,,,,,,,,,,,,,,,,,,,,,,,$150usd
Green Lrg sidekick,,,,,,,,,,,,,,,,,,,$170usd
New Diane von Furstenberg Gizmodo sidekick3,,,$200usd
D-wade limited edition,,,,,,,,,,,,,,,$160usd
New Mr. Cartoon sidekick,,,,,,,,,,,,,$150usd
Sidekick 3,,,,,,,,,,,,,,,,,,,,,,,,,,,$160usd
Pink Juicy coutoure Sidekick 1,,,,,,,$150usd
Pink Juicy coutoure Sidekick 2,,,,,,,$160usd
Sidekick II T-Mobile Color Screen,,,,$140usd
Sidekick 2 Danger Cell,,,,,,,,,,,,,,,$140usd
Sidekick II TMO to Go Prepaid Phone,,$140usd
Mobile Sidekick II,,,,,,,,,,,,,,,,,,,$130usd
Sidekick 2 Danger Cell Phone,,,,,,,,,$150usd
Yellow iD Sidekick4,,,,,,,,,,,,,,,,,,$165USD


Nokia n96 16gb,,,,,,,,,,,,,$300usd
Nokia n95 8gb,,,,,,,,,,,,,,$250usd
Nokia n97,,,,,,,,,,,,,,,,,,$270usd
Nokia AEON,,,,,,,,,,,,,,,,,$350usd

Nokia n95,,,,,,,,,,,,,,,,,,$230usd
Nokia N73 Music Edition,,,,$200usd
Nokia N810,,,,,,,,,,,,,,,,,$240usd
Nokia n73,,,,,,,,,,,,,,,,,,$180usd
Nokia n93,,,,,,,,,,,,,,,,,,$180usd
Nokia n93i,,,,,,,,,,,,,,,,,$200usd
Nokia n92,,,,,,,,,,,,,,,,,,$180usd
Nokia n91,,,,,,,,,,,,,,,,,,$190usd
Nokia n90,,,,,,,,,,,,,,,,,,$185usd
Nokia n80,,,,,,,,,,,,,,,,,,$180usd
Nokia n81,,,,,,,,,,,,,,,,,,$200usd
Nokia n82,,,,,,,,,,,,,,,,,,$230usd
Nokia n83,,,,,,,,,,,,,,,,,,$250usd

Nokia n75,,,,,,,,,,,,,,,,,,$250usd
Nokia n76,,,,,,,,,,,,,,,,,,$250usd
Nokia n77,,,,,,,,,,,,,,,,,,$260usd
Nokia n71,,,,,,,,,,,,,,,,,,$175usd
Nokia E90,,,,,,,,,,,,,,,,,,$210usd
Nokia E65,,,,,,,,,,,,,,,,,,$200usd
Nokia E70,,,,,,,,,,,,,,,,,,$160usd
Nokia E61,,,,,,,,,,,,,,,,,,$160usd
Nokia E51,,,,,,,,,,,,,,,,,,$150usd
Nokia E50,,,,,,,,,,,,,,,,,,$150usd
Nokia E61i,,,,,,,,,,,,,,,,,$170usd
Nokia 8800,,,,,,,,,,,,,,,,,$180usd
Nokia 8800 sirocco,,,,,,,,,$200usd

Nokia 9300,,,,,,,,,,,,,,,,,$170usd
Nokia 9500,,,,,,,,,,,,,,,,,$180usd
Nokia 7390,,,,,,,,,,,,,,,,,$200usd
Nokia 7380,,,,,,,,,,,,,,,,,$160usd
Nokia 7370,,,,,,,,,,,,,,,,,$150usd
Nokia 7360,,,,,,,,,,,,,,,,,$160usd
Nokia 6290,,,,,,,,,,,,,,,,,$180usd
Nokia 6102,,,,,,,,,,,,,,,,,$140usd
Nokia 6230i,,,,,,,,,,,,,,,,$140usd


LAPTOP

Apple Macbook Pro 14/2GHZ,1GB RAM Intel Core 2 Duo,,,,,,,,,,,,,,,,,,,,,,,$400USD(Notebook)
Apple macbook pro 15/2.33/2G Intel core duo 2,,,,,,,$550usd
Apple Macbook Pro 17/2.33/2G Intel Core 2 Duo,,,,,,,$600usd
Apple Macbook Pro 17/2.4Ghz/160 Intel Core 2 Duo,,,,$700usd
Apple Macbook Pro 17" 2.16GHZ Intel core duo,,,,,,,,$520usd
Apple Macbook Pro 15.4/2.4Ghz Intel Core 2 Duo,,,,,,$450usd
Apple Macbook pro 15.4"ICD 2GHZ 1/100GB,,,,,,,,,,,,,$750usd
Apple Macbook Core Duo 2 Ghz-13.3" TFT-MA472LL/A,,,,$300usd
Apple Macbook Pro Core 2 Duo 2.16ghz-15.4",,,,,,,,,,$500usd
Apple Macbook Pro 15"2.16Ghz,1gb,160HD,,,,,,,,,,,,,,$300usd
Apple Macbook Pro 17"3GB RAM,160GB HD,,,,,,,,,,,,,,,$400usd

AND MANY MORE OF CHOICES.................................
WE PROVIDE A GOOD AND FAST SERVICES, OUR SHIPPMENT IS WITHIN
48HRS.
FOR MORE INFORMATION ABOUT OUR PRODUCT,YOU CAN CONTACT US ON OUR VARIOUS EMAILS..





Posted by Raymond on Monday, 05.26.08 @ 05:24pm | #3377

EXCLUSIVE WORLD MOBILE TELECOMMUNICATION LIMITED.
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

CURRENT PRICE LISTED BELOW:


E-mail:..msgr192@live.com

E-mail:..msgr192@inmail24.com

E-mail:.raymondbabs192@gmail.com



Apple i-phone 16gb,,,,,,,,,,,,,,,,,,$270usd
Apple iPhone 8GB Version 1.1.4 + Turbo SIM,,,,,,,$220usd
Apple i-phone 4gb,,,,,,,,,,,,,,,,,,,$180usd



Sidekick Lx,,,,,,,,,,,,,,,,,,,,,,,,,,$150usd
Green Lrg sidekick,,,,,,,,,,,,,,,,,,,$170usd
New Diane von Furstenberg Gizmodo sidekick3,,,$200usd
D-wade limited edition,,,,,,,,,,,,,,,$160usd
New Mr. Cartoon sidekick,,,,,,,,,,,,,$150usd
Sidekick 3,,,,,,,,,,,,,,,,,,,,,,,,,,,$160usd
Pink Juicy coutoure Sidekick 1,,,,,,,$150usd
Pink Juicy coutoure Sidekick 2,,,,,,,$160usd
Sidekick II T-Mobile Color Screen,,,,$140usd
Sidekick 2 Danger Cell,,,,,,,,,,,,,,,$140usd
Sidekick II TMO to Go Prepaid Phone,,$140usd
Mobile Sidekick II,,,,,,,,,,,,,,,,,,,$130usd
Sidekick 2 Danger Cell Phone,,,,,,,,,$150usd
Yellow iD Sidekick4,,,,,,,,,,,,,,,,,,$165USD


Nokia n96 16gb,,,,,,,,,,,,,$300usd
Nokia n95 8gb,,,,,,,,,,,,,,$250usd
Nokia n97,,,,,,,,,,,,,,,,,,$270usd
Nokia AEON,,,,,,,,,,,,,,,,,$350usd

Nokia n95,,,,,,,,,,,,,,,,,,$230usd
Nokia N73 Music Edition,,,,$200usd
Nokia N810,,,,,,,,,,,,,,,,,$240usd
Nokia n73,,,,,,,,,,,,,,,,,,$180usd
Nokia n93,,,,,,,,,,,,,,,,,,$180usd
Nokia n93i,,,,,,,,,,,,,,,,,$200usd
Nokia n92,,,,,,,,,,,,,,,,,,$180usd
Nokia n91,,,,,,,,,,,,,,,,,,$190usd
Nokia n90,,,,,,,,,,,,,,,,,,$185usd
Nokia n80,,,,,,,,,,,,,,,,,,$180usd
Nokia n81,,,,,,,,,,,,,,,,,,$200usd
Nokia n82,,,,,,,,,,,,,,,,,,$230usd
Nokia n83,,,,,,,,,,,,,,,,,,$250usd

Nokia n75,,,,,,,,,,,,,,,,,,$250usd
Nokia n76,,,,,,,,,,,,,,,,,,$250usd
Nokia n77,,,,,,,,,,,,,,,,,,$260usd
Nokia n71,,,,,,,,,,,,,,,,,,$175usd
Nokia E90,,,,,,,,,,,,,,,,,,$210usd
Nokia E65,,,,,,,,,,,,,,,,,,$200usd
Nokia E70,,,,,,,,,,,,,,,,,,$160usd
Nokia E61,,,,,,,,,,,,,,,,,,$160usd
Nokia E51,,,,,,,,,,,,,,,,,,$150usd
Nokia E50,,,,,,,,,,,,,,,,,,$150usd
Nokia E61i,,,,,,,,,,,,,,,,,$170usd
Nokia 8800,,,,,,,,,,,,,,,,,$180usd
Nokia 8800 sirocco,,,,,,,,,$200usd

Nokia 9300,,,,,,,,,,,,,,,,,$170usd
Nokia 9500,,,,,,,,,,,,,,,,,$180usd
Nokia 7390,,,,,,,,,,,,,,,,,$200usd
Nokia 7380,,,,,,,,,,,,,,,,,$160usd
Nokia 7370,,,,,,,,,,,,,,,,,$150usd
Nokia 7360,,,,,,,,,,,,,,,,,$160usd
Nokia 6290,,,,,,,,,,,,,,,,,$180usd
Nokia 6102,,,,,,,,,,,,,,,,,$140usd
Nokia 6230i,,,,,,,,,,,,,,,,$140usd


LAPTOP

Apple Macbook Pro 14/2GHZ,1GB RAM Intel Core 2 Duo,,,,,,,,,,,,,,,,,,,,,,,$400USD(Notebook)
Apple macbook pro 15/2.33/2G Intel core duo 2,,,,,,,$550usd
Apple Macbook Pro 17/2.33/2G Intel Core 2 Duo,,,,,,,$600usd
Apple Macbook Pro 17/2.4Ghz/160 Intel Core 2 Duo,,,,$700usd
Apple Macbook Pro 17" 2.16GHZ Intel core duo,,,,,,,,$520usd
Apple Macbook Pro 15.4/2.4Ghz Intel Core 2 Duo,,,,,,$450usd
Apple Macbook pro 15.4"ICD 2GHZ 1/100GB,,,,,,,,,,,,,$750usd
Apple Macbook Core Duo 2 Ghz-13.3" TFT-MA472LL/A,,,,$300usd
Apple Macbook Pro Core 2 Duo 2.16ghz-15.4",,,,,,,,,,$500usd
Apple Macbook Pro 15"2.16Ghz,1gb,160HD,,,,,,,,,,,,,,$300usd
Apple Macbook Pro 17"3GB RAM,160GB HD,,,,,,,,,,,,,,,$400usd

AND MANY MORE OF CHOICES.................................
WE PROVIDE A GOOD AND FAST SERVICES, OUR SHIPPMENT IS WITHIN
48HRS.
FOR MORE INFORMATION ABOUT OUR PRODUCT,YOU CAN CONTACT US ON OUR VARIOUS EMAILS..





Posted by Raymond on Monday, 05.26.08 @ 05:29pm | #3378

EXCLUSIVE WORLD MOBILE TELECOMMUNICATION LIMITED.
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

CURRENT PRICE LISTED BELOW:


E-mail:..msgr192@live.com

E-mail:..msgr192@inmail24.com

E-mail:.raymondbabs192@gmail.com



Apple i-phone 16gb,,,,,,,,,,,,,,,,,,$270usd
Apple iPhone 8GB Version 1.1.4 + Turbo SIM,,,,,,,$220usd
Apple i-phone 4gb,,,,,,,,,,,,,,,,,,,$180usd



Sidekick Lx,,,,,,,,,,,,,,,,,,,,,,,,,,$150usd
Green Lrg sidekick,,,,,,,,,,,,,,,,,,,$170usd
New Diane von Furstenberg Gizmodo sidekick3,,,$200usd
D-wade limited edition,,,,,,,,,,,,,,,$160usd
New Mr. Cartoon sidekick,,,,,,,,,,,,,$150usd
Sidekick 3,,,,,,,,,,,,,,,,,,,,,,,,,,,$160usd
Pink Juicy coutoure Sidekick 1,,,,,,,$150usd
Pink Juicy coutoure Sidekick 2,,,,,,,$160usd
Sidekick II T-Mobile Color Screen,,,,$140usd
Sidekick 2 Danger Cell,,,,,,,,,,,,,,,$140usd
Sidekick II TMO to Go Prepaid Phone,,$140usd
Mobile Sidekick II,,,,,,,,,,,,,,,,,,,$130usd
Sidekick 2 Danger Cell Phone,,,,,,,,,$150usd
Yellow iD Sidekick4,,,,,,,,,,,,,,,,,,$165USD


Nokia n96 16gb,,,,,,,,,,,,,$300usd
Nokia n95 8gb,,,,,,,,,,,,,,$250usd
Nokia n97,,,,,,,,,,,,,,,,,,$270usd
Nokia AEON,,,,,,,,,,,,,,,,,$350usd

Nokia n95,,,,,,,,,,,,,,,,,,$230usd
Nokia N73 Music Edition,,,,$200usd
Nokia N810,,,,,,,,,,,,,,,,,$240usd
Nokia n73,,,,,,,,,,,,,,,,,,$180usd
Nokia n93,,,,,,,,,,,,,,,,,,$180usd
Nokia n93i,,,,,,,,,,,,,,,,,$200usd
Nokia n92,,,,,,,,,,,,,,,,,,$180usd
Nokia n91,,,,,,,,,,,,,,,,,,$190usd
Nokia n90,,,,,,,,,,,,,,,,,,$185usd
Nokia n80,,,,,,,,,,,,,,,,,,$180usd
Nokia n81,,,,,,,,,,,,,,,,,,$200usd
Nokia n82,,,,,,,,,,,,,,,,,,$230usd
Nokia n83,,,,,,,,,,,,,,,,,,$250usd

Nokia n75,,,,,,,,,,,,,,,,,,$250usd
Nokia n76,,,,,,,,,,,,,,,,,,$250usd
Nokia n77,,,,,,,,,,,,,,,,,,$260usd
Nokia n71,,,,,,,,,,,,,,,,,,$175usd
Nokia E90,,,,,,,,,,,,,,,,,,$210usd
Nokia E65,,,,,,,,,,,,,,,,,,$200usd
Nokia E70,,,,,,,,,,,,,,,,,,$160usd
Nokia E61,,,,,,,,,,,,,,,,,,$160usd
Nokia E51,,,,,,,,,,,,,,,,,,$150usd
Nokia E50,,,,,,,,,,,,,,,,,,$150usd
Nokia E61i,,,,,,,,,,,,,,,,,$170usd
Nokia 8800,,,,,,,,,,,,,,,,,$180usd
Nokia 8800 sirocco,,,,,,,,,$200usd

Nokia 9300,,,,,,,,,,,,,,,,,$170usd
Nokia 9500,,,,,,,,,,,,,,,,,$180usd
Nokia 7390,,,,,,,,,,,,,,,,,$200usd
Nokia 7380,,,,,,,,,,,,,,,,,$160usd
Nokia 7370,,,,,,,,,,,,,,,,,$150usd
Nokia 7360,,,,,,,,,,,,,,,,,$160usd
Nokia 6290,,,,,,,,,,,,,,,,,$180usd
Nokia 6102,,,,,,,,,,,,,,,,,$140usd
Nokia 6230i,,,,,,,,,,,,,,,,$140usd


LAPTOP

Apple Macbook Pro 14/2GHZ,1GB RAM Intel Core 2 Duo,,,,,,,,,,,,,,,,,,,,,,,$400USD(Notebook)
Apple macbook pro 15/2.33/2G Intel core duo 2,,,,,,,$550usd
Apple Macbook Pro 17/2.33/2G Intel Core 2 Duo,,,,,,,$600usd
Apple Macbook Pro 17/2.4Ghz/160 Intel Core 2 Duo,,,,$700usd
Apple Macbook Pro 17" 2.16GHZ Intel core duo,,,,,,,,$520usd
Apple Macbook Pro 15.4/2.4Ghz Intel Core 2 Duo,,,,,,$450usd
Apple Macbook pro 15.4"ICD 2GHZ 1/100GB,,,,,,,,,,,,,$750usd
Apple Macbook Core Duo 2 Ghz-13.3" TFT-MA472LL/A,,,,$300usd
Apple Macbook Pro Core 2 Duo 2.16ghz-15.4",,,,,,,,,,$500usd
Apple Macbook Pro 15"2.16Ghz,1gb,160HD,,,,,,,,,,,,,,$300usd
Apple Macbook Pro 17"3GB RAM,160GB HD,,,,,,,,,,,,,,,$400usd

AND MANY MORE OF CHOICES.................................
WE PROVIDE A GOOD AND FAST SERVICES, OUR SHIPPMENT IS WITHIN
48HRS.
FOR MORE INFORMATION ABOUT OUR PRODUCT,YOU CAN CONTACT US ON OUR VARIOUS EMAILS..





Posted by Raymond on Monday, 05.26.08 @ 05:30pm | #3379

EXCLUSIVE WORLD MOBILE TELECOMMUNICATION LIMITED.
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

CURRENT PRICE LISTED BELOW:


E-mail:..msgr192@live.com

E-mail:..msgr192@inmail24.com

E-mail:.raymondbabs192@gmail.com



Apple i-phone 16gb,,,,,,,,,,,,,,,,,,$270usd
Apple iPhone 8GB Version 1.1.4 + Turbo SIM,,,,,,,$220usd
Apple i-phone 4gb,,,,,,,,,,,,,,,,,,,$180usd



Sidekick Lx,,,,,,,,,,,,,,,,,,,,,,,,,,$150usd
Green Lrg sidekick,,,,,,,,,,,,,,,,,,,$170usd
New Diane von Furstenberg Gizmodo sidekick3,,,$200usd
D-wade limited edition,,,,,,,,,,,,,,,$160usd
New Mr. Cartoon sidekick,,,,,,,,,,,,,$150usd
Sidekick 3,,,,,,,,,,,,,,,,,,,,,,,,,,,$160usd
Pink Juicy coutoure Sidekick 1,,,,,,,$150usd
Pink Juicy coutoure Sidekick 2,,,,,,,$160usd
Sidekick II T-Mobile Color Screen,,,,$140usd
Sidekick 2 Danger Cell,,,,,,,,,,,,,,,$140usd
Sidekick II TMO to Go Prepaid Phone,,$140usd
Mobile Sidekick II,,,,,,,,,,,,,,,,,,,$130usd
Sidekick 2 Danger Cell Phone,,,,,,,,,$150usd
Yellow iD Sidekick4,,,,,,,,,,,,,,,,,,$165USD


Nokia n96 16gb,,,,,,,,,,,,,$300usd
Nokia n95 8gb,,,,,,,,,,,,,,$250usd
Nokia n97,,,,,,,,,,,,,,,,,,$270usd
Nokia AEON,,,,,,,,,,,,,,,,,$350usd

Nokia n95,,,,,,,,,,,,,,,,,,$230usd
Nokia N73 Music Edition,,,,$200usd
Nokia N810,,,,,,,,,,,,,,,,,$240usd
Nokia n73,,,,,,,,,,,,,,,,,,$180usd
Nokia n93,,,,,,,,,,,,,,,,,,$180usd
Nokia n93i,,,,,,,,,,,,,,,,,$200usd
Nokia n92,,,,,,,,,,,,,,,,,,$180usd
Nokia n91,,,,,,,,,,,,,,,,,,$190usd
Nokia n90,,,,,,,,,,,,,,,,,,$185usd
Nokia n80,,,,,,,,,,,,,,,,,,$180usd
Nokia n81,,,,,,,,,,,,,,,,,,$200usd
Nokia n82,,,,,,,,,,,,,,,,,,$230usd
Nokia n83,,,,,,,,,,,,,,,,,,$250usd

Nokia n75,,,,,,,,,,,,,,,,,,$250usd
Nokia n76,,,,,,,,,,,,,,,,,,$250usd
Nokia n77,,,,,,,,,,,,,,,,,,$260usd
Nokia n71,,,,,,,,,,,,,,,,,,$175usd
Nokia E90,,,,,,,,,,,,,,,,,,$210usd
Nokia E65,,,,,,,,,,,,,,,,,,$200usd
Nokia E70,,,,,,,,,,,,,,,,,,$160usd
Nokia E61,,,,,,,,,,,,,,,,,,$160usd
Nokia E51,,,,,,,,,,,,,,,,,,$150usd
Nokia E50,,,,,,,,,,,,,,,,,,$150usd
Nokia E61i,,,,,,,,,,,,,,,,,$170usd
Nokia 8800,,,,,,,,,,,,,,,,,$180usd
Nokia 8800 sirocco,,,,,,,,,$200usd

Nokia 9300,,,,,,,,,,,,,,,,,$170usd
Nokia 9500,,,,,,,,,,,,,,,,,$180usd
Nokia 7390,,,,,,,,,,,,,,,,,$200usd
Nokia 7380,,,,,,,,,,,,,,,,,$160usd
Nokia 7370,,,,,,,,,,,,,,,,,$150usd
Nokia 7360,,,,,,,,,,,,,,,,,$160usd
Nokia 6290,,,,,,,,,,,,,,,,,$180usd
Nokia 6102,,,,,,,,,,,,,,,,,$140usd
Nokia 6230i,,,,,,,,,,,,,,,,$140usd


LAPTOP

Apple Macbook Pro 14/2GHZ,1GB RAM Intel Core 2 Duo,,,,,,,,,,,,,,,,,,,,,,,$400USD(Notebook)
Apple macbook pro 15/2.33/2G Intel core duo 2,,,,,,,$550usd
Apple Macbook Pro 17/2.33/2G Intel Core 2 Duo,,,,,,,$600usd
Apple Macbook Pro 17/2.4Ghz/160 Intel Core 2 Duo,,,,$700usd
Apple Macbook Pro 17" 2.16GHZ Intel core duo,,,,,,,,$520usd
Apple Macbook Pro 15.4/2.4Ghz Intel Core 2 Duo,,,,,,$450usd
Apple Macbook pro 15.4"ICD 2GHZ 1/100GB,,,,,,,,,,,,,$750usd
Apple Macbook Core Duo 2 Ghz-13.3" TFT-MA472LL/A,,,,$300usd
Apple Macbook Pro Core 2 Duo 2.16ghz-15.4",,,,,,,,,,$500usd
Apple Macbook Pro 15"2.16Ghz,1gb,160HD,,,,,,,,,,,,,,$300usd
Apple Macbook Pro 17"3GB RAM,160GB HD,,,,,,,,,,,,,,,$400usd

AND MANY MORE OF CHOICES.................................
WE PROVIDE A GOOD AND FAST SERVICES, OUR SHIPPMENT IS WITHIN
48HRS.
FOR MORE INFORMATION ABOUT OUR PRODUCT,YOU CAN CONTACT US ON OUR VARIOUS EMAILS..





Posted by Raymond on Monday, 05.26.08 @ 05:32pm | #3380

PHP, MySQL testing comment script

Posted by Dylan (http://GWDstudios.com)on Wednesday, 05.28.08 @ 10:14am | #3381

test

Posted by test on Saturday, 05.31.08 @ 11:39pm | #3383

test

Posted by test on Saturday, 05.31.08 @ 11:39pm | #3384

Does this work?
cool if it does :o)

Posted by Bob (www.triggersolutions.co.uk)on Tuesday, 06.3.08 @ 04:12am | #3388

test

Posted by test on Wednesday, 06.4.08 @ 03:42pm | #3389

test

Posted by test on Wednesday, 06.4.08 @ 03:43pm | #3390

waljaljdlj lajsldjasld jlaj dlajldja ldj al

Posted by abby (www.somalimusiclive.com)on Wednesday, 06.4.08 @ 09:19pm | #3393

abti anaa ku biiqo

Posted by aa on Thursday, 06.5.08 @ 05:19pm | #3394

abti anaa ku biiqo

Posted by aa on Thursday, 06.5.08 @ 05:20pm | #3395

Hello guys i have configured the redirect page.
from:
//header("Location: $tuturl")/;
echo "<h1>Submission Successful</h1>"/;
echo "Your comment has been submitted. You will now be redirected back to the last page you visited. Thanks!"/;
echo "<meta http-equiv='refresh' content='2/;URL=$tuturl'>"/;
} else {
echo "There was an error with the submission. "/;
}

to:
//header("Location: $tuturl")/;
echo "<h1>Submission Successful</h1>"/;
echo "Your comment has been submitted. You will now be redirected back to the last page you visited. Thanks!"/;
echo "<meta http-equiv='refresh' content='2/;URL=your url back to your comment page'>"/;
} else {
echo "There was an error with the submission. "/;
}

Posted by Kxrain (www.moartization.com)on Friday, 06.6.08 @ 07:37am | #3396

Hello guys i have configured the redirect page.
from:
//header("Location: $tuturl")/;
echo "<h1>Submission Successful</h1>"/;
echo "Your comment has been submitted. You will now be redirected back to the last page you visited. Thanks!"/;
echo "<meta http-equiv='refresh' content='2/;URL=$tuturl'>"/;
} else {
echo "There was an error with the submission. "/;
}

to:
//header("Location: $tuturl")/;
echo "<h1>Submission Successful</h1>"/;
echo "Your comment has been submitted. You will now be redirected back to the last page you visited. Thanks!"/;
echo "<meta http-equiv='refresh' content='2/;URL=your url back to your comment page'>"/;
} else {
echo "There was an error with the submission. "/;
}

Posted by Kxrain (www.moartization.com)on Friday, 06.6.08 @ 07:38am | #3397

thanks to you for this script

Posted by omar on Sunday, 06.8.08 @ 05:01pm | #3398

gdgfdfg sdfg

Posted by fff (fgdf)on Monday, 06.9.08 @ 01:29am | #3399

This tool is kool but there is still problem with the page redirection.
the solutions proffered here have not been of help.

does someone know how to go about the redirection so it doesnt refresh itself and still hang on the same page.

Posted by Jude (www.ipageng.com)on Monday, 06.9.08 @ 07:47am | #3400

This tool is kool but there is still problem with the page redirection.
the solutions proffered here have not been of help.

does someone know how to go about the redirection so it doesnt refresh itself and still hang on the same page.

Posted by Jude (www.ipageng.com)on Monday, 06.9.08 @ 07:48am | #3401

this is just a test.

Posted by tester on Monday, 06.9.08 @ 08:08am | #3402

ع/;ر/;ب/;ي/;؟/;

Posted by hatim حاتم on Tuesday, 06.10.08 @ 02:39am | #3404

thanks for the script, man!
hope it's ok:
anime hentai

Posted by Fedor on Thursday, 06.12.08 @ 06:49am | #3405

http://hentaitown.net

Posted by Fedor on Thursday, 06.12.08 @ 06:50am | #3406

http://painfulhentai.com

Posted by Dimon on Thursday, 06.12.08 @ 06:52am | #3407

BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com
BEst Portal For Modern Live www.electrowelt.com

Posted by saleh (www.electrowelt.com)on Monday, 06.16.08 @ 12:52pm | #3408

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

Posted by saleh (www.electrowelt.com)on Monday, 06.16.08 @ 12:55pm | #3409

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

BEst Portal For Modern Live http://www.electrowelt.com

Posted by saleh (www.electrowelt.com)on Monday, 06.16.08 @ 12:56pm | #3410

Hi

Gret tut, but how do I add a captcha to it like you have in this one, and how do I make a "rate this tutorial"like above?

Posted by MTF95 (http://www.mtf95.vlexo.net)on Tuesday, 06.17.08 @ 11:08am | #3413

Hi

Gret tut, but how do I add a captcha to it like you have in this one, and how do I make a "rate this tutorial"like above?

Posted by MTF95 (http://www.mtf95.vlexo.net)on Tuesday, 06.17.08 @ 11:09am | #3414

ddd

Posted by addd on Tuesday, 06.17.08 @ 09:23pm | #3415

Dinesh Test

Posted by Dinesh on Friday, 06.20.08 @ 05:16am | #3420

Hi

Posted by jo on Friday, 06.20.08 @ 05:53am | #3421

hello

Posted by Dinesh on Friday, 06.20.08 @ 07:08am | #3422

Does anyone know how to insert the comments script for a site that gets info from mysql, and the comments script should be dinamic.. and inserts the comments for a particular "hub".. please see www.cs-dc.ro and.. by the way.. about captha.. have anyuone installed captcha on comment script ? I too'd like to use captcha.

All the best

Posted by Crazy-Ionutz (http://www.cs-dc.ro)on Sunday, 06.22.08 @ 10:09am | #3424

y

Posted by y (y)on Tuesday, 06.24.08 @ 12:09pm | #3426

y

Posted by y (y)on Tuesday, 06.24.08 @ 12:09pm | #3427

FIX TO THE REDIRECT / REDIRECTION PROBLEM


I have came up with a fix to the redirection problem.. After testing many other "fixes" I finally came up with one of my own that works.


REPLACE:
echo "<meta http-equiv='refresh' content='2/;URL=$tuturl'>"/;

WITH:
echo "<meta http-equiv='refresh' content='0/;url=http://www.alreadyhosting.com'>"/;

***(REPLACE MY DOMAIN AND ADD YOURS)***

If you would like to see this script at work vising my website at www.AlreadyHosting.com and click on any review button.


Posted by Jonathan Burdon (http://www.alreadyhosting.com)on Tuesday, 06.24.08 @ 06:20pm | #3428

111

Posted by 1 on Saturday, 06.28.08 @ 05:32pm | #3435

videos de poker en español

Posted by e cabalceta (http://www.bluff.la)on Monday, 06.30.08 @ 09:03am | #3436

<a href="http://www.hzgames.com">rs2 money</a>
<a href="http://www.hzgames.com">rs2 gold</a>
<a href="http://www.hzgames.com">rs money</a>
<a href="http://www.hzgames.com">rs gold</a>
<a href="http://www.hzgames.com">runescape gold</a>
<a href="http://www.hzgames.com">runescape money</a>
<a href="http://www.hzgames.com/news.asp">warhammer gold</a>
<a href="http://www.hzgames.com/news.asp">Warhammer Online Gold</a>
<a href="http://www.hzgames.com/news.asp">cheap Warhammer Online Gold</a>
<a href="http://www.hzgames.com/news.asp">buy Warhammer Online Gold</a>

Posted by hzgame (http://www.hzgames.com)on Tuesday, 07.1.08 @ 11:12pm | #3439

test

Posted by test on Wednesday, 07.2.08 @ 09:00am | #3443

test

Posted by test on Wednesday, 07.2.08 @ 09:00am | #3444


www.riro.webobo.com [www.riro.webobo.com] ب/;ر/;ا/;م/;ج/; ك/;م/;ب/;ي/;و/;ت/;ر/; [www.riro.webobo.com]
ا/;ل/;ع/;ا/;ب/; [www.riro.webobo.com] radio [www.riro.webobo.com]
www.riro.webobo.com [www.riro.webobo.com] ا/;غ/;ا/;ن/;ي/; [www.riro.webobo.com] ا/;ل/;ع/;ا/;ب/;

Posted by noujoum (http://www.riro.webobo.com)on Friday, 07.4.08 @ 11:47am | #3449


www.riro.webobo.com [www.riro.webobo.com] ب/;ر/;ا/;م/;ج/; ك/;م/;ب/;ي/;و/;ت/;ر/; [www.riro.webobo.com]
ا/;ل/;ع/;ا/;ب/; [www.riro.webobo.com] radio [www.riro.webobo.com]
www.riro.webobo.com [www.riro.webobo.com] ا/;غ/;ا/;ن/;ي/; [www.riro.webobo.com] ا/;ل/;ع/;ا/;ب/;

Posted by noujoum (http://www.riro.webobo.com)on Friday, 07.4.08 @ 11:48am | #3450

welcome to the test massage to the site

Posted by shamx478 on Sunday, 07.6.08 @ 03:00am | #3455

welcome to the test massage to the site

Posted by shamx478 on Sunday, 07.6.08 @ 03:02am | #3456

micro shdkdldsajndasdnsaidnosandisjandijasnfoisajk

Posted by micro on Sunday, 07.6.08 @ 06:39am | #3457

ت/;س/;ت/; ع/;ر/;ب/;ي/;

Posted by Home on Monday, 07.7.08 @ 01:30pm | #3459

п/;р/;о/;б/;а/;

Posted by proba on Tuesday, 07.8.08 @ 06:24am | #3460

Hello people!

Posted by Yoo on Tuesday, 07.8.08 @ 06:55am | #3462

ท/;ด/;ส/;อ/;บ/;ภ/;า/;ษ/;า/;ไ/;ท/;ย/;

Posted by นายนัท on Wednesday, 07.9.08 @ 07:38am | #3465

hi just i need .....how to insert this comment into my css or html wepage .....

plz send the code to my email......

i want to call that php code in my webpage

Posted by sathish (http://www.onlinejobs4us.co.in)on Thursday, 07.10.08 @ 04:42am | #3468

hyfytfyfhbygvtftvjbiuhuihgug6453357ujj

Posted by tester222 on Thursday, 07.10.08 @ 07:07pm | #3469

hyfytfyfhbygvtftvjbiuhuihgug6453357ujj

Posted by tester222 on Thursday, 07.10.08 @ 07:09pm | #3470

hyfytfyfhbygvtftvjbiuhuihgug6453357ujj

Posted by tester222 on Thursday, 07.10.08 @ 07:09pm | #3471

hyfytfyfhbygvtftvjbiuhuihgug6453357ujj

Posted by tester222 on Thursday, 07.10.08 @ 07:09pm | #3472

<b>nice tutorial</b>

Posted by silviu (http://silviugorea.techgenium.ro)on Friday, 07.11.08 @ 02:16am | #3473

good script

Posted by micro (www.zomex.co.cc)on Friday, 07.11.08 @ 12:27pm | #3474

Hi there..
i have tried cretaing the database with the username and password, but it comes up with this error:

Warning: Access denied for user: 'username@127.0.0.1' (Using password: YES) in c:\phpdev\www\comment-form\submitcomment.php on line 12

Warning: MySQL Connection Failed: Access denied for user: 'username@127.0.0.1' (Using password: YES) in c:\phpdev\www\comment-form\submitcomment.php on line 12
I cannot connect to the database because: Access denied for user: 'username@127.0.0.1' (Using password: YES

do i have to assign the username and password in the hosts file first?

need help...thanks

Posted by christina on Saturday, 07.12.08 @ 12:14am | #3475

THIS ITEMS ARE FOR SALES AND THEY ARE BRAND NEW, UNLOCKED WITH ALL THE COMPLETE ACCESSORIES IN THE ORIGINAL BOX, INTERESTED BUYER SHOULD CONTACT US THROUGH EMAIL AT: m_links@live.com

NOKIA N96 for $370usd
Sony Ericsson G900 for $250usd
Sony Ericsson XPERIA X1 for $330usd
8GB Apple iPhone for $280usd
16GB Apple iPhone for $380usd
SAMSUNG G810 for $270usd
HTC TyTN II (Kaiser) for $400usd

NOKIA N96 SPECS:

Quad band GSM (850/900/1800/1900), GPRS/EDGE, dual band (850/2100) HSDPA connectivity
Symbian, S60 FP2
2.8? QVGA 320×240px 16M Color display
5 megapixel with Carl Zeiss lens, dual LED flash
Secondary front camera for video calls
30 fps, VGA quality
16GB of built-in Flash Memory
DVB-H TV Tuner
Wi-Fi b/g, Bluetooth 2.0 +EDR, microUSB
aGPS
Full HTML, Flash Lite enabled Web Browser
Dimensions: 103×55×18 mm, 92 cc
Battery: 950 mAh

EMAIL US IF YOU ARE INTERESTED IN BUYING.
CONTACT EMAIL: m_links@live.com

We offer prompt shipping from our Store, The product will arrive at your destination within 2 Days Via UPS Courier Services.

THANKS.

Posted by Sara on Saturday, 07.12.08 @ 09:16am | #3476

THIS ITEMS ARE FOR SALES AND THEY ARE BRAND NEW, UNLOCKED WITH ALL THE COMPLETE ACCESSORIES IN THE ORIGINAL BOX, INTERESTED BUYER SHOULD CONTACT US THROUGH EMAIL AT: m_links@live.com

NOKIA N96 for $370usd
Sony Ericsson G900 for $250usd
Sony Ericsson XPERIA X1 for $330usd
8GB Apple iPhone for $280usd
16GB Apple iPhone for $380usd
SAMSUNG G810 for $270usd
HTC TyTN II (Kaiser) for $400usd

NOKIA N96 SPECS:

Quad band GSM (850/900/1800/1900), GPRS/EDGE, dual band (850/2100) HSDPA connectivity
Symbian, S60 FP2
2.8? QVGA 320×240px 16M Color display
5 megapixel with Carl Zeiss lens, dual LED flash
Secondary front camera for video calls
30 fps, VGA quality
16GB of built-in Flash Memory
DVB-H TV Tuner
Wi-Fi b/g, Bluetooth 2.0 +EDR, microUSB
aGPS
Full HTML, Flash Lite enabled Web Browser
Dimensions: 103×55×18 mm, 92 cc
Battery: 950 mAh

EMAIL US IF YOU ARE INTERESTED IN BUYING.
CONTACT EMAIL: m_links@live.com

We offer prompt shipping from our Store, The product will arrive at your destination within 2 Days Via UPS Courier Services.

THANKS.

Posted by Sara on Saturday, 07.12.08 @ 09:16am | #3477

<a href= http://www.drmirkin.com/forum/forum_posts.asp?TID=1054&PID=2665#2665 >Buy Xanax on line.Purchase Xanax online</a>
<a href= http://www.drmirkin.com/forum/forum_posts.asp?TID=1055&PID=2666#2666 >Purchase Meridia.Buy Meridia online</a>
<a href= http://www.drmirkin.com/forum/forum_posts.asp?TID=1056&PID=2667#2667 >Didrex without a prescription.Didrex buy</a>
<a href= http://www.drmirkin.com/forum/forum_posts.asp?TID=1057&PID=2668#2668 >Vicodin order.Order Vicodin online</a>
<a href= http://www.drmirkin.com/forum/forum_posts.asp?TID=1058&PID=2669#2669 >Buy Ritalin.Order Ritalin Online.Generic ritalin</a>

Posted by hgfh on Thursday, 07.17.08 @ 05:51pm | #3480

THis is a cool script!

Posted by D on Friday, 07.18.08 @ 08:39am | #3481

woo

Posted by a on Friday, 07.18.08 @ 09:24am | #3482

hello

Posted by SUnil (http:\\www.pop.com)on Monday, 07.21.08 @ 05:19am | #3484

hello

Posted by SUnil (http:\\www.pop.com)on Monday, 07.21.08 @ 05:19am | #3485

dharmesh here how solz

Posted by dharmes (http://www.yahoo.com)on Monday, 07.21.08 @ 07:23am | #3486

dharmesh here how solz

Posted by dharmes (http://www.yahoo.com)on Monday, 07.21.08 @ 07:23am | #3487

testing123

Posted by Aniza on Monday, 07.21.08 @ 06:38pm | #3488

I tried the tutorial. I have one question though... the part

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>

is supposed to be inside a php file right? What if my pages are in .htm? How do I get the inc_rate.php file?

Posted by Aniza on Monday, 07.21.08 @ 07:20pm | #3489

Can I make the 'comments' paste immediately without needing to refresh the page and redirecting to the thank you page?

Posted by Aniza on Tuesday, 07.22.08 @ 04:18am | #3490

dsgdsgsddsggsdgsd

Posted by dsgsd (dsgsdgds)on Tuesday, 07.22.08 @ 04:23pm | #3491

dsgdsgsddsggsdgsd

Posted by dsgsd (dsgsdgds)on Tuesday, 07.22.08 @ 04:23pm | #3492

dsgdsgsddsggsdgsd

Posted by dsgsd (dsgsdgds)on Tuesday, 07.22.08 @ 04:23pm | #3493

jskjfskdfnsfnsdfsdkjfd vsdv dv sd

Posted by asshole (jsd.com)on Thursday, 07.24.08 @ 03:23am | #3497

333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333

Posted by fgdfg (dfgdfg)on Thursday, 07.24.08 @ 04:58am | #3498

Just testing

Posted by Kjell on Friday, 07.25.08 @ 02:45am | #3499

Hey guys wanna learn computer hardware visit http://www.nabin.com.np for free computer hardware tutorial.

Posted by nabin (http://www.nabin.com.np)on Friday, 07.25.08 @ 08:17am | #3500

Nice script!

Posted by Robert M. Cavezza (http://www.google.com)on Friday, 07.25.08 @ 02:56pm | #3502

Hello Buyers.

EXCLUSIVE Mobile World LIMITED.We baseb in united kingdom we are large scale distributor of laptops, mobile phones and other mobile computing products. We supply to other parts of Europe and with our very competitive prices, we intend extending our reach worldwide
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

We ship worldwide via FEDEX,UPS and DHL.
All these products are all brand new,safely sealed in its original
factory box and package with all its complete accessories and manuals.
we deliver within 2 days to buyer doorstep:

Contact : Email (mobileworld_1977@hotmail.com)
Contact : Email (mobileworld_1977@ommail.com)

CURRENT PRICE LISTED BELOW:

NOKIA N95 8Gb $350USD...........252.726€
NOKIA N93i $230USD............166.077€
NOKIA N93 $250USD...........180.519€
NOKIA N70 $130USD...........93.8697€
NOKIA N80 $150USD...........108.311€
NOKIA N90 $180USD...........129.973€
NOKIA N91 $200USD...........144.415€
NOKIA N92 $230USD...........166.077€
NOKIA N76 $240USD............173.298€
NOKIA N800 $200USD...........144.415€
NOKIA E90 $210USD...........151.636€
NOKIA 5100 $140USD...........101.091€
NOKIA N75 $140USD...........101.091€
NOKIA 8600 LUNA A CHEAP PRICE OF $300USD.........216.622€
NOKIA 8800 SIROCCO A CHEAP PRICE OF $200USD......144.415€


20GB iPod 20GB iPod ................................45USD......32.4934 €
Apple 4 GB iPod Mini Pink M9435LL/A ................40 USD......28.8830€
Apple 40 GB iPod photo..............................40 USD......28.8830€
Apple 4 GB iPod Mini Silver M9160LL/A ...............40USD......28.8830€
Apple 60 GB iPod Photo M9830LL/A....................60 USD......43.3245€
Apple 60 GB iPod photo ............................55 USD......39.7141€
Apple 30 GB iPod Photo M9829LL/A...................50 USD......36.1037€
Apple 512 MB iPod Shuffle MP3 Player...............40 USD......28.8830€
Apple 4 GB iPod Mini Blue M9436LL/A................45 USD......32.4934€
Apple 2 GB iPod Nano...............................50 USD......36.1037€
Apple 4 GB iPod Nano...............................60 USD......43.3245€
Apple 30 GB iPod Video............................110 USD......79.4283€
Apple 60 GB iPod Video............................150 USD......108.311€
Apple iPhone 16G B .................................350 USD......230.622€
Apple iPhone 8G B .................................300 USD......216.622€
Apple iPhone 4GB..................................250 USD......180.519€


APPLE LAPTOP
Apple MacBook (MA700LL/A) Mac Notebook...................$450usd
Apple MacBook Pro (MA611LL/A) Notebook...................$500usd
Apple MacBook (MA254LL/A) Mac Notebook...................$400usd
Apple iBook G3 (M7698LL/A) Mac Notebook..................$550usd
Apple MacBook Pro (MA609LL/A) Notebook...................$500usd
Apple MacBook Pro (MA600LLA) Notebook....................$400usd
Apple MacBook Pro (MA610LL/A) Notebook...................$700usd
Apple Macbook Pro (885909119400) Notebook................$750usd

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240


CECT IP1000 @ 200usd
Fujitsu Siemens LOOX T830 @ 300usd
Fujitsu Siemens LOOX N560 @ 2500usd
Gigabyte G-Smart i @ 170usd
Gigabyte G-Smart i120 @ 220usd
Gigabyte G-Smart i300 @ 240usd

Pioneer AVIC-S1 @ $350usd
Pioneer AVIC-Z1 Navigation AVICZ @ $600usd
Pioneer AVIC-N3 Multimedia Navigation Receiver @ $550
Pioneer Avic-z1 Dvd Player Navigation System @ $500usd
Pioneer AVIC-D1 / AVICD1 @ $400usd
Pioneer AVIC-D2 DVD Navigation System @ $400USD

GPS BLUETOOTH RECEIVER
GNS 5843 GPS RDS TMC Bluetooth Receiver:::::::::::::::::::::::::230USD
Holux GPS Bluetooth Receiver, Dongle & DELORME Maps 06::::::::::120USD
Pharos GPS Receiver with Bluetooth Wireless Technology::::::::::100usd
Navman GPS 4410 Bluetooth Receiver::::::::::::::::::::::::::::::220usd
TOMTOM Navigator 5 Wireless Bluetooth GPS:::::::::::::::::::::::260usd
Garmin 010-00378-00 GPS-10 Bluetooth® Enabled GPS:::::::::::::::250usd


PANASONIC PLASMA TV
Panasonic TH-37PHD8UK Plasma $350
Panasonic TH-42PWD8UK Plasma $600
Panasonic TH-42PHD8UK Plasma $500
Panasonic TH-42PD50U EDTV $ 450
Panasonic TH-42PX50U Plasma $650
Panasonic TH-50PX50U Plasma $700
panasonic TH-65PHD8UK Plasma $900

SONY PLASMA TV
SONY FWD-42PV1 Plasma Display $500
Sony PFM-42X1 Plasma Display $550
Sony FWD-50PX2 Plasma Display $700

SAMSUNG PLASMA TV
SAMSUNG HPP3761 Plasma TV $610
Samsung PPM42M5S Plasma Display $505
Samsung SPP4251 Plasma TV $700
Samsung PPM42M5H Plasma Display $550
Samsung HPR4252 Plasma $680
Samsung HPR4262 Plasma TV $450
Samsung HPR4272 Plasma $560
Samsung PPM50M5H Plasma Display $870
Samsung HPR5052 Plasma $670
Samsung HPR5072 Plasma $780
Samsung HPP5581 Plasma TV $780
Samsung PPM63H3Q Plasma Display $700
Samsung HPR6372 Plasma $820

HITACHI PLASMA TV
Hitachi CMP4211u Plasma $850
Hitachi CMP4212u Plasma $350
Hitachi 42HDF52 Plasma HDTV $400
Hitachi 42HDT52 Plasma TV $440
Hitachi 55HDS52 Plasma HDTV $480
Hitachi 55HDT52 Plasma TV $650
Hitachi CMP-55HDM71 Plasma $420

AOC ENVISION PLASMA TV
AOC Envision A42W64 Plasma $400

MAXENT PLASMA TV
Maxent MX-42VM7 Plasma EDTV $370
Maxent MX-50X2 Plasma $300

GAME CONSOLE
X box 360 Premium console ... ..200usd
Xbox 360 pal verrsion..........$170usd
Nintendowii.....................150usd
Nintendo wifi..........$220usd
Ps2.............................160usd
Playstation 3 20GB..............150usd
Playstation 3 60GB..............290usd

SONY VAIO P4 LAPTOP:
SAMSUNG.......... SGH-d410................ $270USD.........194.960€
SAMSUNG....... ...SGH-e700................ $150USD.........108.311€
SAMSUNG...........SGH-e715................ $170USD.........122.753€
SAMSUNG............SGH-p100 ...............$130USD.........93.8697€
SAMSUNG............SGH-p408............... $240USD.........173.298€
SAMSUNG............SGH-p730............... $150USD..........108.311€
SAMSUNG.............SGH-s300m..............$100USD..........7 2.2075€
SAMSUNG............ SGH-x600...............$100USD..........72.2075€
SAMSUNG.............SCH-i730.............. $130USD..........93.8697€
SAMSUNG..............SPH-i500............. $130USD..........93.8697€
SAMSUNG..............P777................. $130USD.........93.8697€
SAMSUNG............. SPH-i330............. $135USD.........97..4801€
SAMSUNG..............SCH-A890..............$140USD.........1 01..091€
SONY ERICSSON
SONY ERICSSON......... p800...............$180USD.........129.973€
SONY ERICSSON........... p900.............$200USD.........144.415€
SONY ERICSSON.........p910.................$290USD...... ...209.402€
SONY ERICSSON......... t610................$100USD.........72.2075€
SONY ERICSSON..........z1010...............$220USD...... ...158.857€
SONY ERICSSON ..........z600...............$130USD.........93.869 7€
SONY ERICSSON .........t630................$130USD.........93.869 7€
SONY ERICSSON.......... s700i..............$150USD.........108.311€
SONY ERICSSON........... s750i.............$180USD.........129.973€
SONY ERICSSON.......... W800i ............$200USD.........144.415€
MOTOROLA
Motorola............. a388c.......... $230usd..........166.077€
Motorola .............a760...........$250usd..........180.5 19€
Motorola............. a768...........$170usd...........122.753€
Motorola............. a768i..........$200usd..........144.415€
Motorola............. a780...........$290usd..........209.402€
Motorola............ e398 ............$120usd..........86.6490€
Motorola............. Mpx 300 ........$150usd..........108.311€
Motorola............. Mpx 220........$140usd..........101.091€
Motorola............. e680...........$200usd...........144.415€
Motorola............ razor v3........$150usd..........108.311€
Motorola............ v220............$170usd..........122.753€
Motorola............ v303............$100usd..........72.2075€
Motorola............v400.............$150usd...... ....108.311€
Motorola v600 (oem) w/ Bluetooth headset. ..$210usd...151.636€
Motorola v80 with Bluetooth.................$200usd.. .144.415€
NEXTEL 1930 ...$120USD........86.6490€
NEXTEL 1960 ...$130USD........93.8697€
NEXTEL i870 ...$140usd........101.091€
NEXTEL i450 ...90usd..........64.9867€
NEXTEL I830 FOR A VHEAP PRICE OF...$100USD........72.2075€
NEXTEL 1860 ...$105USD........75.8179€
GAMES
PAMTERO 600 ...$120USD........86.6490€
PAMTERO 650 ...$150USD........108.311€
XBOX 360 ......$200USD........144.415€
PLAYSTATION 1 ...$100USD.......72.2075€
PLAYSTATION 2 .....$150USD.......108.311€
PLAYSTATION 3 GB 80 .....$300USD.......216.622€
PLAYSTATION 3 GB 60 .....$250USD.......160.477€
NINTENDO WII ......$180USD........129.973€
SIDEKICK
sidekick3 for a cheaper price........$150usd........108.311€
Sidekick II Cell Phone for...........$120usd.......86.6490€
T-Mobile Sidekick 2 .................$100usd.......72.2075€
T-Mobile To Go Prepaid Sidekick II...$120usd.......86.6490€
Toshiba Laptop TECRA 8100 Pentium III 600/128MB
#12.........$400usd.......288.830€
Tecra M7-S7311 Tablet PC - Toshiba Laptop ..................$500usd........361.038€
Toshiba Tecra M5-S433 14.1" Laptop Computer.................$550usd.......397.141€
Sony VAIO SZ270P/C Notebook Intel Centrino Duo Core
Duo.....$350USD.......252.726€
Gateway Desktop Computer Pentium 2.8ghz Duo Core
GM5066E....$550USD.......397..141€
Acer Acer TravelMate 8216WLHi Notebook - Intel Centrino....
$700USD.......505.453€
New Dell Inspiron E1505 Duo Core Laptop .....................$300USD.......216.622€
Samsung 63 inch Plasma TV HPR6372............................$500usd.......36 1.038€
Panasonic TH-50PX500U 50" Flat Panel HD-Ready Plasma TV
....$700usd.......505.453€
Pioneer Plasma 61" HDTV Flat Panel Plasma TV
(01559)........$650usd.......469..349€
Akai PDP4249 42" Plasma TV .................................$450usd.......324 .934€
Sylvania 6842-PEM Plasma TV & Monitors.......................$300usd.......216.62 2€
Samsung HP-R5052 50" Plasma TV...............................$400usd.......288. 830€
NEW Toshiba 42" Integrated HD Plasma TV
42HP66..............$800usd.......577.660€
Panasonic TH-42PX600U 42" High Definition Plasma TV........
$550usd.......397.141€
SONY VAIO A217S-- 100GB-- 512MB RAM-- XP
HOME----------------$500......361.038€
SONY VAIO B1VP-- 40GB HD-- 512MB RAM-- XP PRO----------------$430......310.492€
SONY VAIO T370P/L-- 60GB HD-- 512MB RAM-- XP-----------------$400......288.830€
SONY VAIO A397XP-- 80GB HD-- 512MB RAM------ XP--------------$700......505.453€
SONY VAIO B100B08 60GB HD-- 512MB RAM-------$400
XP----------$450......324.934€
SONY VAIO B100B08 60GB HD-- 512MB RAM-- XP-------------------$600......433.245€
SONY VAIO FS295VP 80GB HD-- 512MB RAM-- XP-------------------$550......397.141€

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240

Interested Buyers Should Contact us For More details to Buy the products.So contact information listed below:

Contact : Email (mobileworld_1977@hotmail.com)
Contact : Email (mobileworld_1977@ommail.com)








Posted by Mrs Famous on Wednesday, 07.30.08 @ 06:43am | #3507



Hello Buyers.

EXCLUSIVE Mobile World LIMITED.We baseb in united kingdom we are large scale distributor of laptops, mobile phones and other mobile computing products. We supply to other parts of Europe and with our very competitive prices, we intend extending our reach worldwide
BRAND NEW UNLOCKED PHONES/PDA

We are legitimate and reputable company

We ship worldwide via FEDEX,UPS and DHL.
All these products are all brand new,safely sealed in its original
factory box and package with all its complete accessories and manuals.
we deliver within 2 days to buyer doorstep:

Contact : Email (mobileworld_1977@hotmail.com)
Contact : Email (mobileworld_1977@ommail.com)

CURRENT PRICE LISTED BELOW:

NOKIA N95 8Gb $350USD...........252.726€
NOKIA N93i $230USD............166.077€
NOKIA N93 $250USD...........180.519€
NOKIA N70 $130USD...........93.8697€
NOKIA N80 $150USD...........108.311€
NOKIA N90 $180USD...........129.973€
NOKIA N91 $200USD...........144.415€
NOKIA N92 $230USD...........166.077€
NOKIA N76 $240USD............173.298€
NOKIA N800 $200USD...........144.415€
NOKIA E90 $210USD...........151.636€
NOKIA 5100 $140USD...........101.091€
NOKIA N75 $140USD...........101.091€
NOKIA 8600 LUNA A CHEAP PRICE OF $300USD.........216.622€
NOKIA 8800 SIROCCO A CHEAP PRICE OF $200USD......144.415€


20GB iPod 20GB iPod ................................45USD......32.4934 €
Apple 4 GB iPod Mini Pink M9435LL/A ................40 USD......28.8830€
Apple 40 GB iPod photo..............................40 USD......28.8830€
Apple 4 GB iPod Mini Silver M9160LL/A ...............40USD......28.8830€
Apple 60 GB iPod Photo M9830LL/A....................60 USD......43.3245€
Apple 60 GB iPod photo ............................55 USD......39.7141€
Apple 30 GB iPod Photo M9829LL/A...................50 USD......36.1037€
Apple 512 MB iPod Shuffle MP3 Player...............40 USD......28.8830€
Apple 4 GB iPod Mini Blue M9436LL/A................45 USD......32.4934€
Apple 2 GB iPod Nano...............................50 USD......36.1037€
Apple 4 GB iPod Nano...............................60 USD......43.3245€
Apple 30 GB iPod Video............................110 USD......79.4283€
Apple 60 GB iPod Video............................150 USD......108.311€
Apple iPhone 16G B .................................350 USD......230.622€
Apple iPhone 8G B .................................300 USD......216.622€
Apple iPhone 4GB..................................250 USD......180.519€

Apple iPhone 4GB Unlocked @ 200usd
Apple iPhone 8GB Unlocked @250usd
Apple iphone 3GB Unloncked@200usd

Blackberry 8800 "indigo" (unlocked) @ 220usd
Blackberry 8700g @ 180usd
Blackberry 8100 Pearl Cingular (unlocked) @160usd

APPLE LAPTOP
Apple MacBook (MA700LL/A) Mac Notebook...................$450usd
Apple MacBook Pro (MA611LL/A) Notebook...................$500usd
Apple MacBook (MA254LL/A) Mac Notebook...................$400usd
Apple iBook G3 (M7698LL/A) Mac Notebook..................$550usd
Apple MacBook Pro (MA609LL/A) Notebook...................$500usd
Apple MacBook Pro (MA600LLA) Notebook....................$400usd
Apple MacBook Pro (MA610LL/A) Notebook...................$700usd
Apple Macbook Pro (885909119400) Notebook................$750usd

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240


CECT IP1000 @ 200usd
Fujitsu Siemens LOOX T830 @ 300usd
Fujitsu Siemens LOOX N560 @ 2500usd
Gigabyte G-Smart i @ 170usd
Gigabyte G-Smart i120 @ 220usd
Gigabyte G-Smart i300 @ 240usd

Pioneer AVIC-S1 @ $350usd
Pioneer AVIC-Z1 Navigation AVICZ @ $600usd
Pioneer AVIC-N3 Multimedia Navigation Receiver @ $550
Pioneer Avic-z1 Dvd Player Navigation System @ $500usd
Pioneer AVIC-D1 / AVICD1 @ $400usd
Pioneer AVIC-D2 DVD Navigation System @ $400USD

GPS BLUETOOTH RECEIVER
GNS 5843 GPS RDS TMC Bluetooth Receiver:::::::::::::::::::::::::230USD
Holux GPS Bluetooth Receiver, Dongle & DELORME Maps 06::::::::::120USD
Pharos GPS Receiver with Bluetooth Wireless Technology::::::::::100usd
Navman GPS 4410 Bluetooth Receiver::::::::::::::::::::::::::::::220usd
TOMTOM Navigator 5 Wireless Bluetooth GPS:::::::::::::::::::::::260usd
Garmin 010-00378-00 GPS-10 Bluetooth® Enabled GPS:::::::::::::::250usd


PANASONIC PLASMA TV
Panasonic TH-37PHD8UK Plasma $350
Panasonic TH-42PWD8UK Plasma $600
Panasonic TH-42PHD8UK Plasma $500
Panasonic TH-42PD50U EDTV $ 450
Panasonic TH-42PX50U Plasma $650
Panasonic TH-50PX50U Plasma $700
panasonic TH-65PHD8UK Plasma $900

SONY PLASMA TV
SONY FWD-42PV1 Plasma Display $500
Sony PFM-42X1 Plasma Display $550
Sony FWD-50PX2 Plasma Display $700

SAMSUNG PLASMA TV
SAMSUNG HPP3761 Plasma TV $610
Samsung PPM42M5S Plasma Display $505
Samsung SPP4251 Plasma TV $700
Samsung PPM42M5H Plasma Display $550
Samsung HPR4252 Plasma $680
Samsung HPR4262 Plasma TV $450
Samsung HPR4272 Plasma $560
Samsung PPM50M5H Plasma Display $870
Samsung HPR5052 Plasma $670
Samsung HPR5072 Plasma $780
Samsung HPP5581 Plasma TV $780
Samsung PPM63H3Q Plasma Display $700
Samsung HPR6372 Plasma $820

HITACHI PLASMA TV
Hitachi CMP4211u Plasma $850
Hitachi CMP4212u Plasma $350
Hitachi 42HDF52 Plasma HDTV $400
Hitachi 42HDT52 Plasma TV $440
Hitachi 55HDS52 Plasma HDTV $480
Hitachi 55HDT52 Plasma TV $650
Hitachi CMP-55HDM71 Plasma $420

AOC ENVISION PLASMA TV
AOC Envision A42W64 Plasma $400

MAXENT PLASMA TV
Maxent MX-42VM7 Plasma EDTV $370
Maxent MX-50X2 Plasma $300

GAME CONSOLE
X box 360 Premium console ... ..200usd
Xbox 360 pal verrsion..........$170usd
Nintendowii.....................150usd
Nintendo wifi..........$220usd
Ps2.............................160usd
Playstation 3 20GB..............150usd
Playstation 3 60GB..............290usd

SONY VAIO P4 LAPTOP:
SAMSUNG.......... SGH-d410................ $270USD.........194.960€
SAMSUNG....... ...SGH-e700................ $150USD.........108.311€
SAMSUNG...........SGH-e715................ $170USD.........122.753€
SAMSUNG............SGH-p100 ...............$130USD.........93.8697€
SAMSUNG............SGH-p408............... $240USD.........173.298€
SAMSUNG............SGH-p730............... $150USD..........108.311€
SAMSUNG.............SGH-s300m..............$100USD..........7 2.2075€
SAMSUNG............ SGH-x600...............$100USD..........72.2075€
SAMSUNG.............SCH-i730.............. $130USD..........93.8697€
SAMSUNG..............SPH-i500............. $130USD..........93.8697€
SAMSUNG..............P777................. $130USD.........93.8697€
SAMSUNG............. SPH-i330............. $135USD.........97..4801€
SAMSUNG..............SCH-A890..............$140USD.........1 01..091€
SONY ERICSSON
SONY ERICSSON......... p800...............$180USD.........129.973€
SONY ERICSSON........... p900.............$200USD.........144.415€
SONY ERICSSON.........p910.................$290USD...... ...209.402€
SONY ERICSSON......... t610................$100USD.........72.2075€
SONY ERICSSON..........z1010...............$220USD...... ...158.857€
SONY ERICSSON ..........z600...............$130USD.........93.869 7€
SONY ERICSSON .........t630................$130USD.........93.869 7€
SONY ERICSSON.......... s700i..............$150USD.........108.311€
SONY ERICSSON........... s750i.............$180USD.........129.973€
SONY ERICSSON.......... W800i ............$200USD.........144.415€
MOTOROLA
Motorola............. a388c.......... $230usd..........166.077€
Motorola .............a760...........$250usd..........180.5 19€
Motorola............. a768...........$170usd...........122.753€
Motorola............. a768i..........$200usd..........144.415€
Motorola............. a780...........$290usd..........209.402€
Motorola............ e398 ............$120usd..........86.6490€
Motorola............. Mpx 300 ........$150usd..........108.311€
Motorola............. Mpx 220........$140usd..........101.091€
Motorola............. e680...........$200usd...........144.415€
Motorola............ razor v3........$150usd..........108.311€
Motorola............ v220............$170usd..........122.753€
Motorola............ v303............$100usd..........72.2075€
Motorola............v400.............$150usd...... ....108.311€
Motorola v600 (oem) w/ Bluetooth headset. ..$210usd...151.636€
Motorola v80 with Bluetooth.................$200usd.. .144.415€
NEXTEL 1930 ...$120USD........86.6490€
NEXTEL 1960 ...$130USD........93.8697€
NEXTEL i870 ...$140usd........101.091€
NEXTEL i450 ...90usd..........64.9867€
NEXTEL I830 FOR A VHEAP PRICE OF...$100USD........72.2075€
NEXTEL 1860 ...$105USD........75.8179€
GAMES
PAMTERO 600 ...$120USD........86.6490€
PAMTERO 650 ...$150USD........108.311€
XBOX 360 ......$200USD........144.415€
PLAYSTATION 1 ...$100USD.......72.2075€
PLAYSTATION 2 .....$150USD.......108.311€
PLAYSTATION 3 GB 80 .....$300USD.......216.622€
PLAYSTATION 3 GB 60 .....$250USD.......160.477€
NINTENDO WII ......$180USD........129.973€
SIDEKICK
sidekick3 for a cheaper price........$150usd........108.311€
Sidekick II Cell Phone for...........$120usd.......86.6490€
T-Mobile Sidekick 2 .................$100usd.......72.2075€
T-Mobile To Go Prepaid Sidekick II...$120usd.......86.6490€
Toshiba Laptop TECRA 8100 Pentium III 600/128MB
#12.........$400usd.......288.830€
Tecra M7-S7311 Tablet PC - Toshiba Laptop ..................$500usd........361.038€
Toshiba Tecra M5-S433 14.1" Laptop Computer.................$550usd.......397.141€
Sony VAIO SZ270P/C Notebook Intel Centrino Duo Core
Duo.....$350USD.......252.726€
Gateway Desktop Computer Pentium 2.8ghz Duo Core
GM5066E....$550USD.......397..141€
Acer Acer TravelMate 8216WLHi Notebook - Intel Centrino....
$700USD.......505.453€
New Dell Inspiron E1505 Duo Core Laptop .....................$300USD.......216.622€
Samsung 63 inch Plasma TV HPR6372............................$500usd.......36 1.038€
Panasonic TH-50PX500U 50" Flat Panel HD-Ready Plasma TV
....$700usd.......505.453€
Pioneer Plasma 61" HDTV Flat Panel Plasma TV
(01559)........$650usd.......469..349€
Akai PDP4249 42" Plasma TV .................................$450usd.......324 .934€
Sylvania 6842-PEM Plasma TV & Monitors.......................$300usd.......216.62 2€
Samsung HP-R5052 50" Plasma TV...............................$400usd.......288. 830€
NEW Toshiba 42" Integrated HD Plasma TV
42HP66..............$800usd.......577.660€
Panasonic TH-42PX600U 42" High Definition Plasma TV........
$550usd.......397.141€
SONY VAIO A217S-- 100GB-- 512MB RAM-- XP
HOME----------------$500......361.038€
SONY VAIO B1VP-- 40GB HD-- 512MB RAM-- XP PRO----------------$430......310.492€
SONY VAIO T370P/L-- 60GB HD-- 512MB RAM-- XP-----------------$400......288.830€
SONY VAIO A397XP-- 80GB HD-- 512MB RAM------ XP--------------$700......505.453€
SONY VAIO B100B08 60GB HD-- 512MB RAM-------$400
XP----------$450......324.934€
SONY VAIO B100B08 60GB HD-- 512MB RAM-- XP-------------------$600......433.245€
SONY VAIO FS295VP 80GB HD-- 512MB RAM-- XP-------------------$550......397.141€

Digital Camcorders :

DVD Handycam Camcorder,DCR-DVD203 .... $250
DVD Handycam Camcorder,DCR-DVD7E .... $160
MicroMV Digital Camcorder,DCRIP1 .... $280
DCR-DVD7 DVD Camcorder .... $170
DCR-DVD602E PAL DVD Camcorder .... $200
Dcr Dvd201e Sony Dvd Camcorder .... $320
Sony DVD HandyCam Camcorder .... $500
Sony DCR-DVD201 DVD Digital Camcorder ....$200
Sony DCRHC42 DVD Handycam Camcorder .... $170
Sony DCR-DVD103DVD Camcorder .... $240

Interested Buyers Should Contact us For More details to Buy the products.So contact information listed below:

Contact : Email (mobileworld_1977@hotmail.com)
Contact : Email (mobileworld_1977@ommail.com

Posted by Mrs Famous on Wednesday, 07.30.08 @ 07:06am | #3508

test

Posted by tset on Friday, 08.1.08 @ 07:06am | #3509

thx..very much

Posted by atul on Sunday, 08.3.08 @ 05:10am | #3512

this is just a test

Posted by Tester (testurl.com)on Tuesday, 08.5.08 @ 06:52am | #3517

Hey ... I was wondering how you set your time zone? Because the time displayed is not right for my timezone. Thanks!

Posted by Panda on Thursday, 08.7.08 @ 02:50pm | #3520

hhhhh

Posted by julio on Friday, 08.8.08 @ 01:33pm | #3523

hhhhh

Posted by julio on Friday, 08.8.08 @ 01:33pm | #3524

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3525

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3526

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3527

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3528

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3529

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3530

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3531

rr

Posted by juio on Friday, 08.8.08 @ 01:34pm | #3532

Hello,
Im very interesting in this script and so far i have spent like 20-25 hours trying to install the damn thing with no luck (and other scripts aswell). Im just a beginner so i followed every step closely. I dont understand: "Upload all of the files onto your server". Upload them where??????? Can somebody please specify where am i supposed to upload files of the script, in which directory of my web server? The only reasonable place in my experiance to upload files is the directory where my web pages are located but that didnt brought my any success with lounching the script. And we are talking about two files: inc_rate.php and submittcoment.php? (nothing more than these two files right?)

Second thing:

"Add the following code to your page where you want the comments to be displayed. Make sure the page is a php file.:

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>
"
I really dont understand this! I thought that web pages are alwas .html files and first one is usually called index right? so, am i supposed to rename my index.html to index.php in order to make comments work???? If it is so, where exactly should i place this code in my page because my index.php (index.html) is consisted in many different html strings like body, head... Anyway i tried this and it dint work.

If you have any other installation notes about the script please post them, i beg you.

Posted by Savo (bursac.net)on Sunday, 08.10.08 @ 01:21am | #3534

Hello,
Im very interesting in this script and so far i have spent like 20-25 hours trying to install the damn thing with no luck (and other scripts aswell). Im just a beginner so i followed every step closely. I dont understand: "Upload all of the files onto your server". Upload them where??????? Can somebody please specify where am i supposed to upload files of the script, in which directory of my web server? The only reasonable place in my experiance to upload files is the directory where my web pages are located but that didnt brought my any success with lounching the script. And we are talking about two files: inc_rate.php and submittcoment.php? (nothing more than these two files right?)

Second thing:

"Add the following code to your page where you want the comments to be displayed. Make sure the page is a php file.:

<?php
require('inc_rate.php')/;
getComments("1")/;
submitComments("1","$PHP_SELF")/;
?>
"
I really dont understand this! I thought that web pages are alwas .html files and first one is usually called index right? so, am i supposed to rename my index.html to index.php in order to make comments work???? If it is so, where exactly should i place this code in my page because my index.php (index.html) is consisted in many different html strings like body, head... Anyway i tried this and it dint work.

If you have any other installation notes about the script please post them, i beg you.

Posted by Savo (bursac.net)on Sunday, 08.10.08 @ 01:21am | #3535

I made it finally!!!!!

Posted by Savo (bursac.net)on Sunday, 08.10.08 @ 03:56am | #3536

TRADEWORLD LIMITED provides a Solution and Production of mobile phone, PDA, Pocket PC and Pager. We are always welcome any Mobile phone company orders from both overseas and local customers. With our experiences, we highly focus on our customer's needs and provide the excellent quality products to our customers.

To satisfy our customers with the excellent quality products and service, we have a full range of production price listed below, We offer Fast delivery means (UPS/USPS/FEDEX/DHL and EMS). We strongly believe TRADEWORLD LIMITED brings you the best quality products and service With the competitive prices to meet your needs.
Email address :Kate_bright147@hotmail.com
Kate_bright147@ommail.com

NINTENDO WII......$250USD
NOKIA N95 8GB.....$400USD
NOKIA N96 16GB....$450USD
IPHONE 16GB…….....$350USD
iPHONE 8GB……......$300USD
IPOD 32GB.........$350USD
Iphone 3g.........$300usd
NOKIA N96.........$500USD
PS3 60GB……........$300USD
SONY ERICSSON XPERIA X1......$450USD
SONY ERICSSON G900...........$400usd

AND MANY MORE…………
NOKIA N96 16GB SPECIFICATION
PACKAGE CONTENTS:
1 Nokia N96 16GB Phone
1 Li-ion Battery BL-6F
1 USB Cable
1 User Manual (Hard Copy or CD)
1 CD Rom
1 International Charger US Adapter Or (US Charger)
Nokia Connectivity Cable CA-101
Nokia Stereo Headset and Remote HS-45, AD-54
Nokia Mobile Charger DC-4 (car charger)
Nokia Compact Travel Charger AC-5
Return Policy:

You may return the item within ten (10) days of delivery of the order. Products with Manufacturer Warranties which exceed 30 days, may be returned
directly to the manufacturer according to their instructions. Customer may request a replacement product otherwise company credit will be issued. A restocking fee
maybe applied to your return.

Sales Rep
Kate
Email: Kate_bright147@hotmail.com
Kate_bright147@ommail.com
TEL:+447031890468
You can also have live chat with us on (pleaser147@yahoo.com).

Posted by kate bright on Wednesday, 08.13.08 @ 08:15pm | #3542

dfgfgdgfg

Posted by fdgdf (fdgfdg)on Sunday, 08.17.08 @ 05:41am | #3544

Test

Posted by Anonymous on Friday, 08.22.08 @ 11:35am | #3549

zhaocou8
qxl5201
<a href=http://www.mygamestock.com>wow gold</a>
<a href=http://itemrate.com>wow gold</a>
<a href=http://www.oforu.com>wow gold</a>
<a href=http://item4sale.com>wow gold</a>
<a href=http://www.mygamestock.com/PLindex.aspx>wow gold</a>
<a href=http://www.mygamestock.com/Cheap.009.Ever_Quest.aspx>wow gold</a>
<a href=http://www.mygamestock.com>wow power leveling</a>
<a href=http://www.mygamestock.com/PLindex.aspx>wow power leveling</a>
<a href=http://www.jdcf168.com.cn>股/;票/;软/;件/;</a>
<a href=http://www.jdcf168.com.cn/news/2008-03-21/390.htm>股/;票/;软/;件/;</a>
<a href=http://www.jdcf168.com.cn>大/;智/;慧/;</a>
<a href=http://www.jdcf168.com.cn/news/2008-03-25/403.htm>大/;智/;慧/;</a>
<a href=http://www.jdcf168.com.cn>炒/;股/;软/;件/;</a>
<a href=http://www.jdcf168.com.cn/news/2008-05-04/1330.htm>炒/;股/;软/;件/;</a>
<a href=http://www.hrx12333.com>人/;力/;资/;源/;管/;理/;师/;</a>
<a href=http://www.hrx12333.com/html/zhiyezigerenzheng/index.html>人/;力/;资/;源/;管/;理/;师/;</a>
<a href=http://www.hrx12333.com>人/;力/;资/;源/;培/;训/;</a>
<a href=http://www.hrx12333.com/html/zhiyezigerenzheng/index.html>人/;力/;资/;源/;培/;训/;</a>
<a href=http://www.pumppump.cn>磁/;力/;泵/;</a>
<a href=http://www.pumppump.cn/cp3.htm>磁/;力/;泵/;</a>
<a href=http://www.mygamestock.com/Cheap.040.Hellgate_London.aspx>wow gold</a>
<a href=http://www.mygamestock.com/Power.019.World_of_Warcraft_-_EU.aspx>wow gold</a>
<a href=http://www.mygamestock.com/wowgold42.html>wow gold</a>
<a href=http://www.mygamestock.com/wowgold43.html>wow gold</a>
<a href=http://www.mygamestock.com/wowgold44.html>wow gold</a>
<a href=http://www.mygamestock.com/wowgold45.html>wow gold</a>
<a href=http://www.mygamestock.com/wowgold46.html>wow gold</a>
<a href=http://www.mygamestock.com/wowgold47.html>wow gold</a>
<a href=http://www.mygamestock.com/wowgold48.html>wow gold</a>
<a href=http://dinmo.org/0813/wow-gold-4.html>wow gold</a>
<a href=http://goofeel.org/0813/ffxi-gil.html>wow gold</a>
<a href=http://serserline.com/0813/wow-gold-4.html>wow gold</a>
<a href=http://garbor.net/0813/wow-gold-4.html>wow gold</a>
<a href=http://jaybus.cn/0813/wow-gold-4.html>wow gold</a>
<a href=http://dianaslink.com/0812/wow-gold-US.html>wow gold</a>
<a href=http://banbooler.com/0812/081204.html>wow gold</a>
<a href=http://gogoneverstop.com/0812/081204.html>wow gold</a>
<a href=http://dqgate.com/0812/love-gold.html>wow gold</a>
<a href=http://laymandea.com/0812/love-gold.html>wow gold</a>
<a href=http://thepomb.com/0819/wow-gold-4.html>wow gold</a>
<a href=http://raxplace.com/0819/wow-gold-4.html>wow gold</a>
<a href=http://romenc.com/0819/wow-gold-4.html>wow gold</a>
<a href=http://luomans.com/0819/wow-gold-4.html>wow gold</a>
<a href=http://wowgoldmany.org/0819/wow-gold-4.html>wow gold</a>
<a href=http://jdcf.blog.sohu.com>炒/;股/;软/;件/;</a>
<a href=http://blog.sina.com.cn/hrx12333>人/;力/;资/;源/;管/;理/;师/;</a>
<a href=http://hrx123333.blog.163.com>人/;力/;资/;源/;培/;训/;</a>
<a href=http://mygamestock.blogs.experienceproject.com>wow gold</a>
<a href=http://360.yahoo.com/mygamestock>wow gold</a>

Posted by zhaocou8 on Sunday, 08.24.08 @ 06:27pm | #3550

http://vidsanime.com

Posted by Harley on Monday, 08.25.08 @ 08:41am | #3552

Maybe yo'll find this nice link useful
http://sexy-hentai.net

Posted by Harley on Monday, 08.25.08 @ 08:42am | #3553

vihjwjhs
vbnsdtyu
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow power leveling
wow power leveling
股/;票/;软/;件/;
股/;票/;软/;件/;
大/;智/;慧/;
大/;智/;慧/;
真/;空/;泵/;
真/;空/;泵/;
阀/;门/;
阀/;门/;
英/;语/;口/;语/;
英/;语/;口/;语/;
wow gold
wow gold
[url=http://www.mygamestock.com/wow%20gold020.html]wow gold[/url]
[url=http://www.mygamestock.com/wow%20gold021.html]wow gold[/url]
[url=http://www.mygamestock.com/wow%20gold022.html]wow gold[/url]
[url=http://www.mygamestock.com/wow%20gold023.html]wow gold[/url]
[url=http://www.mygamestock.com/wow%20gold024.html]wow gold[/url]
[url=http://www.mygamestock.com/wow%20gold025.html]wow gold[/url]
[url=http://www.mygamestock.com/wow%20gold026.html]wow gold[/url]
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold

Posted by wowgold (www.mygamestock.com)on Monday, 08.25.08 @ 07:34pm | #3554

<a href=http://www.yogawww.com/> yoga mat</a> | <a href=http://www.wowgoldsell.com/>wow gold</a> <a href=http://www.wowgoldservice.com/>wow power leveling</a> | <a href=http://www.yogawww.com>wholesale yoga mats</a> | <a href=http://www.wowchina.us> wow gold</a> | <a href=http://www.howtogold.com/>wow gold</a> <a href=http://www.chinatravelvip.com> China Travel</a> <a href=http://www.wowgoldsell.com/>sell wow gold</a> <a href=http://www.yogawww.com />cheap yoga mats</a> <a href=http://www.yogawww.com/yoga-class/> yoga class</a> <a href=http://www.yogawww.com/yoga-product/>yoga product</a> <a href=http://www.yogawww.com/yoga-clothing/>yoga clothing</a> <a href=http://www.yogawww.com/yoga-news/>yoga news</a> <a href=http://www.wowgoldservice.com/>wow gold</a> <a href=http://www.howtogold.com/>how to gold</a> | <a href=http://www.yogawww.com/chinese-cross-stitch/>chinese cross stitch</a> | <a href=http://www.yogawww.com> buy yoga mats</a>

Posted by china travel (http://www.chinatravelvip.com)on Tuesday, 08.26.08 @ 12:20am | #3556

<a href=http://www.yogawww.com/> yoga mat</a> | <a href=http://www.wowgoldsell.com/>wow gold</a> <a href=http://www.wowgoldservice.com/>wow power leveling</a> | <a href=http://www.yogawww.com>wholesale yoga mats</a> | <a href=http://www.wowchina.us> wow gold</a> | <a href=http://www.howtogold.com/>wow gold</a> <a href=http://www.chinatravelvip.com> China Travel</a> <a href=http://www.wowgoldsell.com/>sell wow gold</a> <a href=http://www.yogawww.com />cheap yoga mats</a> <a href=http://www.yogawww.com/yoga-class/> yoga class</a> <a href=http://www.yogawww.com/yoga-product/>yoga product</a> <a href=http://www.yogawww.com/yoga-clothing/>yoga clothing</a> <a href=http://www.yogawww.com/yoga-news/>yoga news</a> <a href=http://www.wowgoldservice.com/>wow gold</a> <a href=http://www.howtogold.com/>how to gold</a> | <a href=http://www.yogawww.com/chinese-cross-stitch/>chinese cross stitch</a> | <a href=http://www.yogawww.com> buy yoga mats</a>

Posted by china travel (http://www.chinatravelvip.com)on Tuesday, 08.26.08 @ 12:21am | #3557

wow gold | sell wow gold |
cheap yoga mats | yoga mat |
buy yoga mats | yoga class |
yoga product | [url=http://www.yogawww.com/yoga-clothing/]yoga
clothing[/url] | yoga news | [url=http://www.yogawww.com/yoga-
styles/]yoga styles[/url] | chinese cross stitch | [url=http://www.wowgoldservice.com/]wow power leveling
[/url] | wow gold | [url=http://www.howtogold.com/]wow
gold[/url] | how to gold wholesale yoga mats China Travel wow gold

Posted by china travel (http://www.chinatravelvip.com)on Tuesday, 08.26.08 @ 12:22am | #3558

df28hj
gtg08y
<a href=http://itemrate.com>wow gold</a>
<a href=http://itemrate.com/Cheap.027.Gaia_online.Gold.aspx>wow gold</a>
<a href=http://itemrate.com/CHEAP.013.WORLD_OF_WARCRAFT_-_US.ASPX>wow gold</a>
<a href=http://itemrate.com/world-of-warcraft-gold.aspx>wow gold</a>
<a href=http://itemrate.com/Cheap.013.World_of_Warcraft_-_US.aspx>wow gold</a>
<a href=http://itemrate.com/Cheap.014.Maple_Story.aspx>wow gold</a>
<a href=http://www.kcmp.cn>泵/;</a>
<a href=http://www.kcmp.cn/beng.html>泵/;</a>
<a href=http://www.shshenyang.com>泵/;</a>
<a href=http://www.shshenyang.com/products/isw.htm>泵/;</a>
<a href=http://www.kcmp.cn>水/;泵/;</a>
<a href=http://www.kcmp.cn/shuibeng.html>水/;泵/;</a>
<a href=http://www.kcmp.cn/shuibeng-6.html>水/;泵/;</a>
<a href=http://www.shshenyang.com>水/;泵/;</a>
<a href=http://www.shshenyang.com/products/isw.htm>水/;泵/;</a>
<a href=http://www.shshenyang.com>齿/;轮/;输/;油/;泵/;</a>
<a href=http://www.shshenyang.com/products/kcb.htm>齿/;轮/;输/;油/;泵/;</a>
<a href=http://www.kcmp.cn>环/;保/;设/;备/;</a>
<a href=http://www.kcmp.cn/huanbaoshebei.html>环/;保/;设/;备/;</a>
<a href=http://www.topchinatrip.com>China Travel</a>
<a href=http://www.topchinatrip.com>China Tours</a>
<a href=http://www.topchinatrip.com/CityTours.php>China Tours</a>
<a href=http://www.topchinatrip.com>beijing Tours</a>
<a href=http://www.topchinatrip.com/Cityindex.php?city_id=6>beijing Tours</a>
<a href=http://www.topchinatrip.com>beijing Travel</a>
<a href=http://www.topchinatrip.com/Cityindex.php?city_id=6>beijing Travel</a>
<a href=http://www.topchinatrip.com>shanghai Tours</a>
<a href=http://www.topchinatrip.com/Cityindex.php?city_id=8>shanghai Tours</a>
<a href=http://www.topchinatrip.com>shanghai Travel</a>
<a href=http://www.topchinatrip.com/Cityindex.php?city_id=8>shanghai Travel</a>
<a href=http://itemrate.com/wowgt31.html>wow gold</a>
<a href=http://itemrate.com/wowgt32.html>wow gold</a>
<a href=http://itemrate.com/wowgt33.html>wow gold</a>
<a href=http://itemrate.com/wowgt34.html>wow gold</a>
<a href=http://itemrate.com/wowgt35.html>wow gold</a>
<a href=http://gold4power.net/080807>wow gold</a>
<a href=http://foxtod.com/080807>wow gold</a>
<a href=http://deworld.net/080807>wow gold</a>
<a href=http://gameworld8.com/080807>wow gold</a>
<a href=http://pingor.com/081107/>wow gold</a>
<a href=http://loxfad.com/080807/>wow gold</a>
<a href=http://loxfat.com/081107/>wow gold</a>
<a href=http://loxgame.com/081107/>wow gold</a>
<a href=http://loxtravle.com/081107/>wow gold</a>
<a href=http://loxfood.com/081107/>wow gold</a>
<a href=http://gamewant.org/wow7.html>wow gold</a>
<a href=http://igamebest.com/gold7.html>wow gold</a>
<a href=http://gamewant.net/wow7.html>wow gold</a>
<a href=http://igamebest.net/wow6.html>wow gold</a>
<a href=http://igamebest.org/wow6.html>wow gold</a>
<a href=http://benggt.blog.ccidnet.com>泵/;</a>
<a href=http://blog.unissoft.com/user-index-shuibenggt.bhtml>水/;泵/;</a>
<a href=http://blog.salala.com/blog.php?uid=5862>齿/;轮/;输/;油/;泵/;</a>
<a href=http://www.txtku.cn/blog/blog.php?uid=66>环/;保/;设/;备/;</a>

Posted by df28hj on Wednesday, 08.27.08 @ 07:27pm | #3566

dsgdsd

Posted by fsdfs (www.jjj.kkk)on Wednesday, 09.3.08 @ 12:46pm | #3570

dsgdsd

Posted by fsdfs (www.jjj.kkk)on Wednesday, 09.3.08 @ 12:46pm | #3571

xllzhxays
xllzhyyzyq
<a href=http://www.oforu.com>wow gold</a>
<a href=http://www.oforu.com/Sitemap.htm>wow gold</a>
<a href=http://brogame.com>wow gold</a>
<a href=http://itemrate.com>wow gold</a>
<a href=http://www.iae-longre.com/country/kor/>韩/;国/;留/;学/;</a>
<a href=http://www.iae-longre.com/country/kor/>留/;学/;韩/;国/;</a>
<a href=http://www.iae-longre.com/News/2008/6-13/104713.html>留/;学/;荷/;兰/;</a>
<a href=http://www.iae-longre.com/country/aus/aus_g_g.html>澳/;洲/;留/;学/;</a>
<a href=http://www.iae-longre.com/country/aus/aus_g_g.html>留/;学/;澳/;洲/;</a>
<a href=http://www.iae-longre.com/News/2007/7-31/114710.html>意/;大/;利/;留/;学/;</a>
<a href=http://www.iae-longre.com/COUNTRY/NZL/>新/;西/;兰/;留/;学/;</a>
<a href=http://www.oforu.com/AboutUs.aspx>wow gold</a>
<a href=http://www.oforu.com/S3Default.aspx>wow gold</a>
<a href=http://www.oforu.com/FindPassword.aspx>wow gold</a>
<a href=http://www.oforu.com/ContactUs.aspx>wow gold</a>
<a href=http://www.oforu.com/Faq.aspx>wow gold</a>
<a href=http://www.oforu.com/SignUp.aspx>wow gold</a>
<a href=http://www.oforu.com/PLindex.aspx>wow gold</a>
<a href=http://www.oforu.com/WhyReg.aspx>wow gold</a>
<a href=http://www.oforu.com/Support.aspx>wow gold</a>
<a href=http://www.oforu.com/Accountindex.aspx>wow gold</a>
<a href=http://www.oforu.com/Fantasy-XI-Titan.html>wow gold</a>
<a href=http://www.oforu.com/buy-earthda-lant.html>wow gold</a>
<a href=http://www.oforu.com/Power.014.Maple_Story.aspx>wow gold</a>
<a href=http://www.oforu.com/Cheap.030.Lord_of_the_Rings_Online.aspx>wow gold</a>
<a href=http://www.oforu.com/Power.1.World_of_Warcraft_US.aspx>wow gold</a>
<a href=http://www.oforu.com/buy-lotr-gold.htm>wow gold</a>
<a href=http://www.oforu.com/eve-isk.htm>wow gold</a>
<a href=http://www.oforu.com/eve-online-isk .htm>wow gold</a>
<a href=http://www.oforu.com/buy-eve-isk.htm>wow gold</a>
<a href=http://www.oforu.com/cheap-eve-isk.htm>wow gold</a>
<a href=http://www.oforu.com/eq2-gold.htm>wow gold</a>
<a href=http://www.oforu.com/eq2-plat.htm>wow gold</a>
<a href=http://www.oforu.com/guild-wars-gold.htm>wow gold</a>
<a href=http://www.oforu.com/warhammer-gold.htm>wow gold</a>
<a href=http://www.oforu.com/warhammer-power-leveling.htm>wow gold</a>
<a href=http://goldmance.com/0814/Online-money.html>wow gold</a>
<a href=http://gontanksell.com/0814/Online-money.html>wow gold</a>
<a href=http://lemancesell.com/0814/Online-money.html>wow gold</a>
<a href=http://limancer.com/0814/Online-money.html>wow gold</a>
<a href=http://lemance.com/0814/Online-money.html>wow gold</a>
<a href=http://lomanxi.com/0814/Online-money.html>wow gold</a>
<a href=http://tuboty.com/0814/Online-money.html>wow gold</a>
<a href=http://wowgoldmany.net/0814/Online-money.html>wow gold</a>
<a href=http://wowgoldmany.com/0814/Online-money.html>wow gold</a>
<a href=http://wowgoldmany.org/0814/Online-money.html>wow gold</a>
<a href=http://goldmance.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://gontanksell.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://lemancesell.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://limancer.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://lemance.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://lomanxi.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://tuboty.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://wowgoldmany.net/0814/Warhammer-power.html>wow gold</a>
<a href=http://wowgoldmany.com/0814/Warhammer-power.html>wow gold</a>
<a href=http://wowgoldmany.org/0814/Warhammer-power.html>wow gold</a>

Posted by xllzhxays on Wednesday, 09.3.08 @ 06:28pm | #3572

Hello Buyers.
Mobile World Limited, We are located and base in United Kingdom, we are selling all brand and latest electronics such as mobile phones, pda, laptop, notebook, ipods, digital camera, gps, plasma television, games at affordable and competitive prices.. we give 1 year warranty for every product sold out to our costumers, our product are company class 1 tested and approved by global standard organization of wireless industries, Brand new merchandise with complete accessories, extra charger and battery. and also we give tracking number and airwaybill for your to monitor your packaged online as its goin to e delivered in the next 48 hours Via FedEx/DHL/UPS..

Contact : Email (mobileworld_1977@hotmail.com)
Contact : Email (mobileworld_1977@ommail.com)
Contact/;Email(electronicsstore4mobile@hotmail.com
contact /; Phone (+447024063684)

PRIEC LIST IN THE STOCK

NOKIA PHONE
Nokia n96 16 Gb : $300usd.
Nokia N95 8gb........$250
Nokia n81 8gb .....$220
Nokia N80...........$130
Nokia 8600 LunaEmbarassed250
Nokia E90 .....$220USD
Nokia E61i.....$160USD..
Nokia N93.......$160USD
Nokia N92.......$130USD
Nokia N95 ......$220USD
Nokia N91.......$200USD
Nokia N90.......$80USD
Nokia N70.......$100USD
Nokia N73.......$150USD
Nokia N71.......$120USD
Nokia 8800......$150USD
Nokia 8800 Sirocco..$200USD
Nokia 7710.......$145USD
Nokia 7610.......$120usd
Nokia 9300......$145USD
Nokia 9500......$170USD
Nokia N93i.......$220USD.
Nokia N75.......$200USD.
Nokia N76.......$220USD.
Nokia N800.....$200USD.

SAMSUNG F110 (ULOCKED)…………………………$350
SAMSUNG F480 (UNLOCKED)……………………….$400
SAMSUNG G810 (UNLOCKED)………………………$500
SAMSUNG F700 (UNLOCKED)………………………$450
SAMSUNG G600 (UNLOCKED)……………………….$300
SAMSUNG Z710 (UNLOCKED)………………………$280usd
SAMSUNG M8000 (UNLOCKED)……………………$250usd
SAMSUNG sgh-i830 (UNLOCKED)…………………..$150usd
SAMSUNG G810 (UNLOCKED)……………………….$200
SAMSUNG ARMANI (UNLOCKED)…………………..$300
SAMSUNG F700 (UNLOCKED)……………………….$400
SAMSUNG P960 (UNLOCKED)……………………….$450
SAMSUNG U900 SOUL (UNLOCKED)………………$550
SAMSUNG Giorgio Armani P520 (unlocked)……….$350

Apple 4 GB iPod Mini Pink M9435LL/A ……40 USD
Apple 40 GB iPod photo………………..40 USD
Apple 4 GB iPod Mini Silver M9160LL/A ….40 USD
Apple 60 GB iPod Photo M9830LL/A……….60 USD
Apple 60 GB iPod photo ……………….55 USD
Apple 30 GB iPod Photo M9829LL/A……….50 USD
Apple 512 MB iPod Shuffle MP3 Player……40 USD
Apple 4 GB iPod Mini Blue M9436LL/A…….45 USD
Apple 2 GB iPod Nano………………….50 USD
Apple 4 GB iPod Nano………………….60 USD
Apple 30 GB iPod Vidoe……………….110 USD
Apple 60 GB iPod Vidoe……………….150 USD

Apple Iphone 16GB.......$350USD
Apple Iphone 8GB.........$300USD
Apple Iphone 4GB........$250USD
Apple Iphone 3GB.........$300USD

SONY ERICSSON XPERIA X1...........$450
SONY ERICSSON C702 (UNLOCKED)……………$420
SONY ERICSSON W760 (UNLOCKED)…………..$400
SONY ERICSSON W960 (UNLOCKED)…………….$400
SONY ERICSSON XPERIA XI (UNLOCKED)……….$350
SONY ERICSSON T303 (UNLOCKED)………………$420
SONY ERICSSON G900 (UNLOCKED)……………..$300
SONY ERICSSON P1 (UNLOCKED)…………………$410
SONY ERICSSON K850 (UNLOCKED)……………..$250
SONY Ericsson k790i (UNLOCKED)……………….$300USD
SONY Ericsson w300i (UNLOCKED)……………….$250usd
SONY Ericsson p990i (UNLOCKED)……………….$340usd
SONY Ericsson w900i (UNLOCKED)–……………..$300USD
SONY Ericsson w960i (UNLOCKED)–……………..$340USD

BLACK BERRY......

blackberry 7130e..................................................$220usd
blackberry 7100g.................................................$210usd
blackberry 7100i..................................................$200usd

blackberry 8700c................................................$200usd
blackberry 8700r ................................................$200usd
blackberry 7130g ...............................................$210usd

blackberry 7100t ................................................$200usd
blackberry 7230 ..................................................$210usd
blackberry 7290...................................................$210usd
blackberry 8700f..................................................$230usd

HTC Touch Diamond P3700 GPS PDA Unlocked...............................$430
HTC Advantage X7500 Quad Band GSM PDA SmartPhone..............$310
HTC Advantage X7501 Quad Band GSM PDA Phone -USVersion.....$310
HTC MTeoR Tri-Band GSM EDGE SmartPhon........................................$210

MOTOROLA
Motorola…………. a388c………. $230usd
Motorola ………….a760………..$250usd
Motorola…………. a768………..$170usd
Motorola…………. a768i……….$200usd
Motorola…………. a780………..$290usd
Motorola………… e398 …………$120usd
Motorola…………. Mpx 300 ……..$150uUD
Motorola…………. Mpx 220……..$140usd
Motorola…………. e680………..$200usd
Motorola………… razor v3……..$150usd
Motorola………… v220…………$170usD
Motorola………… v303…………$100usd
Motorola…………v400………….$150usD

GAMES
PAMTERO 600 .............................…$120USD
PAMTERO 650 …..............................$150USD
XBOX 360 …..................................…$200USD
PLAYSTATION 1 …..........................$100USD
PLAYSTATION 2 …..........................$150USD
PLAYSTATION 3 GB 80 …..............$300USD
PLAYSTATION 3 GB 60 ..................$250USD
NINTENDO WII ……..........................$180USD

APPLE MACBOOK LAPTOP

Apple MacBook (MB061LL/A) Mac Notebook.....550usd
Apple MacBook Pro (MA610LL) Notebook...........650usd
Apple MacBook (MB063LL/A) Mac Notebook......600usd
Apple MacBook Pro (MA897LL/A) Notebook........800usd
Apple MacBook (MB062LL/A) Mac Notebook.......720usd
Apple MacBook Pro (MA896LL) Notebook.............740usd

We are selliong all kinds of laptpos like

SONY VAIO A217S-- 100GB-- 512MB RAM-- XP HOME...............$500
SONY VAIO B1VP-- 40GB HD-- 512MB RAM-- XP PRO.................$430
SONY VAIO T370P/L-- 60GB HD-- 512MB RAM-- XP.....................$400
SONY VAIO A397XP-- 80GB HD-- 512MB RAM-- XP.....................$700
SONY VAIO B100B08 60GB HD-- 512MB RAM-- XP......................$450
SONY VAIO FS295VP 80GB HD-- 512MB RAM-- XP......................$550
SONY VAIO FS215Z 100GB HD-- 512MB RAM-- XP......................$650
SONY VAIO A417M 80GB HD-- 512MB RAM-- XP..........................$650
SONY VAIO B1VP-- 40GB HD-- 512MB RAM-- XP PRO..................$300
SONY VAIO T370P/L-- 60GB HD-- 512MB RAM-- XP PRO.............$600
SONY VAIO LAPTOP-- VGN-A117S.................................................$600
SONY VAIO LAPTOP-- VGN-S1XP...................................................$700

DELL LAPTOPS
Dell LatitudeD600--................................................................$290
Dell Latitude D500..............................................................................$200
Dell Inspiron 6000.............................................................................. $350
Dell Latitude D505...............................................................................$340
Dell Latitude D610.............................................................................. $460
Dell Latitude D510...............................................................................$320
Dell Inspiron 9300-...............................................................................$530
Dell Inspiron 700m...............................................................................$1020
Dell Inspiron 700M for Home (Pentium M 1.70GHz, 512MB, 40GB)....... $550
Dell Inspiron 2200 for Home (Celeron 1.50GHz, 256MB, 40GB)............. $400

PLASMA TV PRICES
Samsung HP-R5052 50 Plasma TV AT JUST $900
Gateway 42\\\" Plasma TV 16 : 9 AT JUST $750
Panasonic TH-37PWD8UK Plasma AT JUST $920
Dell W5001C 50-inch High AT JUST $700
Samsung SPN4235 Widescreen AT JUST $850
Pioneer Plasma 61\\\" HDTV AT JUST $900
Pioneer PDP-5060HD Plasma tv AT JUST $650
Samsung SPN4235 Widescreen tv AT JUST $1000
Sony FWD-50PX1 50\\\" Plasma AT JUST $1,200
Sony KDE-61XBR950 Plasma TV AT JUST $1,400

NAVIGATION SYSTEM RECEIVER

Pioneer AVIC-N4 Car DVD Player
Pioneer AVIC-N3 Car DVD Player
Pioneer AVIC-N2 Car DVD Player
Pioneer AVIC-N1 Car DVD Player
Pioneer AVIC-88DVD Car DVD Player
Pioneer AVH-P6800DVD Car DVD Player
Pioneer AVH-P7800DVD Car DVD Player
Pioneer AVIC-90DVD Car DVD Player
Pioneer GPS AVIC-X1 car radio Car Video Player
Pioneer AVIC-80DVD Car DVD Player
Pioneer NAV-SYS910DVD Car DVD Player
Pioneer AVIC-Z1 Car DVD Player
Pioneer AVIC-Z2 Car DVD Player
Pioneer AVIC-D3Car DVD Player
Pioneer AVIC-D1 Car DVD Player
Kenwood XXV-05V 7 CD/DVD/MP3/WMA Receiver
Kenwood Excelon XXV-05V
Kenwood KVT-617DVD Receiver
Kenwood KVT-719DVD / KVT719
Kenwood KVT-819DVD In-dash DVD/CD receiver
Kenwood VR-8070 7.1 Channels Receiver
Kenwood VR-406 Receiver
Kenwood VR-357 Receiver
Kenwood VR-5080 5.1 Channels Receiver
Kenwood KRF-V5060D 5.1 Channels Receiver
Kenwood VR-9070S 7.1 Channels Receiver
Kenwood VR-3100 Receiver
Kenwood KR-V5580 Receiver
Kenwood VR-5700 6.1 Channels Receiver

Interested Buyers Should Contact us For More details to Buy the products.So contact information listed below:

Contact : Email (mobileworld_1977@hotmail.com)
Contact : Email (mobileworld_1977@ommail.com)
Contact/;Email(electronicsstore4mobile@hotmail.com
contact /; Phone (+447024063684)

Posted by Famous on Thursday, 09.4.08 @ 01:26pm | #3578

test

Posted by test on Thursday, 09.4.08 @ 08:20pm | #3579

this site gives lot of information regarding some html tags and etc......
so will suggest my collegues to visit this site

Posted by beauty tips (http://superbeautytips.blogspot.com)on Friday, 09.5.08 @ 02:30am | #3581

I thought that web pages are alwas .html files and first one is usually called index right? so, am i supposed to rename my index.html to index.php in order to make comments work?....anyway interestinG

Posted by elena (http://www.india-designs.com)on Friday, 09.5.08 @ 06:27am | #3583

For some reason when it attempts to redirect it just keeps reloading and reloading never redirecting back to the page. Whats the reason with this ?

Posted by Dustin (www.dustinbarre.com)on Friday, 09.5.08 @ 12:35pm | #3584

<a href="http://www.7xueche.com/">驾/;校/;</a>
<a href="http://www.aushoffice.org/">澳/;洲/;留/;学/;</a>
<a href="http://www.aushoffice.org/">留/;学/;澳/;洲/;</a>
<a href="http://shanghai.eduglobal.com/">留/;学/;美/;国/;</a>
<a href="http://shanghai.eduglobal.com/">美/;国/;留/;学/;</a>
<a href="http://shanghai.eduglobal.com/">英/;国/;留/;学/;</a>
<a href="http://shanghai.eduglobal.com/">留/;学/;英/;国/;</a>
<a href="http://www.xieziloubj.cn/bjgs/">搬/;家/;公/;司/;</a>
<a href="http://www.xieziloubj.cn/bjgs/">上/;海/;搬/;家/;公/;司/;</a>
<a href="http://www.xieziloubj.cn/bjgs/">搬/;场/;公/;司/;</a>
<a href="http://www.xieziloubj.cn/bjgs/">上/;海/;搬/;场/;公/;司/;</a>
<a href="http://www.58huojia.com/">货/;架/;</a>
<a href="http://www.longfa2008.cn/">货/;架/;</a>
<a href="http://www.62967120.com/">长/;途/;搬/;家/;</a>
<a href="http://www.62967120.com/">北/;京/;长/;途/;搬/;家/;</a>
<a href="http://www.62967120.com/">北/;京/;长/;途/;搬/;家/;公/;司/;</a>
<a href="http://www.62967120.com/">长/;途/;搬/;家/;公/;司/;</a>
<a href="http://www.62967120.com/">北/;京/;搬/;家/;公/;司/;</a>
<a href="http://www.datang58.com/">Google排/;名/;</a>
<a href="http://www.moocar.com.cn/">汽/;车/;网/;</a>
<a href="http://www.byxyhj.com/">货/;架/;</a>
<a href="http://www.quilting-machinery.com/">quilting machine</a>
<a href="http://www.ginoart.com/plus/view.php?aid=70">aluminium easel</a>
<a href="http://www.xieziloubj.cn/xzl/">写/;字/;楼/;出/;租/;</a>
<a href="http://www.xieziloubj.cn/xzl/">写/;字/;楼/;</a>
<a href="http://www.datang58.com/fygs/">翻/;译/;公/;司/;</a>
<a href="http://www.datang58.com/fygs/">北/;京/;翻/;译/;公/;司/;</a>
<a href="http://www.7xueche.com/">北/;京/;驾/;校/;</a>

<a href="http://www.dsmzl.com/ztinfo.asp?ztid=27">肺/;癌/;</a>
<a href="http://www.dsmzl.com/">肺/;癌/;</a>
<a href="http://www.dsmzl.com/ztinfo.asp?ztid=20">直/;肠/;癌/;</a>
<a href="http://www.dsmzl.com/">直/;肠/;癌/;</a>
<a href="http://www.dsmzl.com/yaopin_01zhenxiang.asp">珍/;香/;胶/;囊/;</a>
<a href="http://www.dsmzl.com/">珍/;香/;胶/;囊/;</a>
<a href="http://www.dsmzl.com/ztinfo.asp?ztid=21">胃/;癌/;</a>
<a href="http://www.dsmzl.com/">胃/;癌/;</a>
<a href="http://www.dsmzl.com/ztinfo.asp?ztid=19">结/;肠/;癌/;</a>
<a href="http://www.dsmzl.com/ztinfo.asp?ztid=26">肝/;癌/;</a>
<a href="http://www.dsmzl.com/">肝/;癌/;</a>
<a href="http://www.dsmzl.com/ztinfo.asp?ztid=17">乳/;腺/;癌/;</a>
<a href="http://www.dsmzl.com/">乳/;腺/;癌/;</a>
<a href="http://www.dsmzl.com/ztinfo.asp?ztid=23">食/;道/;癌/;</a>
<a href="http://www.dsmzl.com/">食/;道/;癌/;</a>
<a href="http://www.dsmzl.com/yaopin_12qingfei.asp">清/;肺/;散/;结/;丸/;</a>
<a href="http://www.dsmzl.com/">清/;肺/;散/;结/;丸/;</a>
<a href="http://www.datang58.com/58guangpan/index.html">光/;盘/;刻/;录/;</a>
<a href="http://www.datang58.com/58guangpan/index.html">光/;盘/;制/;作/;</a>
<a href="http://www.datang58.com/58guangpan/index.html">光/;盘/;印/;刷/;</a>
<a href="http://www.bjjly.net/">货/;架/;</a>
<a href="http://mivjia.com/">猎/;头/;</a>
<a href="http://www.datang58.com/hq/">婚/;庆/;</a>
<a href="http://www.gdstbj.cn/">管/;道/;疏/;通/;</a>
<a href="http://www.gdstbj.cn/">北/;京/;疏/;通/;管/;道/;</a>
<a href="http://www.gdstbj.cn/">北/;京/;疏/;通/;下/;水/;道/;</a>
<a href="http://www.gdstbj.cn/">北/;京/;管/;道/;疏/;通/;</a>
<a href="http://www.gdstbj.cn/">北/;京/;高/;压/;清/;洗/;</a>
<a href="http://www.gdstbj.cn/qxgd.htm">清/;洗/;管/;道/;</a>
<a href="http://www.gdstbj.cn/gdst.htm">北/;京/;海/;淀/;区/;管/;道/;疏/;通/;</a>
<a href="http://www.gdstbj.cn/bjgdst.htm">北/;京/;密/;云/;区/;管/;道/;疏/;通/;</a>
<a href="http://mivjia.com/LG/">Led显/;示/;屏/;</a>
<a href="http://www.zhongguo82.cn/lipin/">礼/;品/;</a>
<a href="http://www.zhongguo82.cn/lipin/">礼/;品/;公/;司/;</a>
<a href="http://www.lz160.net/shownews.asp?new_id=294532">喜/;来/;健/;</a>
<a href="http://edu.rednet.cn/c/2008/09/05/1587304.htm">喜/;来/;健/;</a>
<a href="http://www.efaw.cn/html/jdxw/200895/0DE422948.html">喜/;来/;健/;</a>
<a href="http://www.jxgdw.com/jxgd/news/kj/userobject1ai830088.html">喜/;来/;健/;</a>
<a href="http://finance.yinsha.com/file/200809/2008090517214604.htm">喜/;来/;健/;</a>
<a href="http://nvcmmoo.17167.com/">喜/;来/;健/;</a>
<a href="http://blog.csdn.net/nvcmmoo/">喜/;来/;健/;</a>
<a href="http://my2008.tianya.cn/18975954">喜/;来/;健/;</a>
<a href="http://www.doyu.com.cn/html/blog/304/">喜/;来/;健/;</a>
<a href="http://481255.blog.51cto.com/">喜/;来/;健/;</a>
<a href="http://blog.hinews.cn/blog.php?uid=17361">喜/;来/;健/;</a>
<a href="http://my.icxo.com/369173">喜/;来/;健/;</a>
<a href="http://www.a.com.cn/forum/Blog/ablog/index.aspx?uid=nvcmmoo">喜/;来/;健/;</a>
<a href="http://blog.pchome.net/u/nvcmmoo">喜/;来/;健/;</a>
<a href="http://edu.846.cn/2004y/2008-9-5/200895182348.html">喜/;来/;健/;</a>

Posted by knc on Wednesday, 09.10.08 @ 07:15pm | #3597

驾/;校/;
澳/;洲/;留/;学/;
留/;学/;澳/;洲/;
留/;学/;美/;国/;
美/;国/;留/;学/;
英/;国/;留/;学/;
留/;学/;英/;国/;
搬/;家/;公/;司/;
上/;海/;搬/;家/;公/;司/;
搬/;场/;公/;司/;
上/;海/;搬/;场/;公/;司/;
北/;京/;搬/;家/;公/;司/;
货/;架/;
货/;架/;
长/;途/;搬/;家/;
北/;京/;长/;途/;搬/;家/;
北/;京/;长/;途/;搬/;家/;公/;司/;
长/;途/;搬/;家/;公/;司/;
Google排/;名/;
汽/;车/;网/;
货/;架/;
quilting machine
aluminium easel
写/;字/;楼/;出/;租/;
写/;字/;楼/;
翻/;译/;公/;司/;
北/;京/;翻/;译/;公/;司/;
北/;京/;驾/;校/;

肺/;癌/;
肺/;癌/;
直/;肠/;癌/;
直/;肠/;癌/;
珍/;香/;胶/;囊/;
珍/;香/;胶/;囊/;
胃/;癌/;
胃/;癌/;
结/;肠/;癌/;
肝/;癌/;
肝/;癌/;
乳/;腺/;癌/;
乳/;腺/;癌/;
食/;道/;癌/;
食/;道/;癌/;
清/;肺/;散/;结/;丸/;
光/;盘/;刻/;录/;
光/;盘/;制/;作/;
光/;盘/;印/;刷/;
清/;肺/;散/;结/;丸/;
货/;架/;
猎/;头/;
婚/;庆/;
管/;道/;疏/;通/;
北/;京/;疏/;通/;管/;道/;
北/;京/;疏/;通/;下/;水/;道/;
北/;京/;管/;道/;疏/;通/;
北/;京/;高/;压/;清/;洗/;
清/;洗/;管/;道/;
北/;京/;海/;淀/;区/;管/;道/;疏/;通/;
北/;京/;密/;云/;区/;管/;道/;疏/;通/;
Led显/;示/;屏/;
礼/;品/;
礼/;品/;公/;司/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;

Posted by knc on Wednesday, 09.10.08 @ 07:17pm | #3598

驾/;校/;
澳/;洲/;留/;学/;
留/;学/;澳/;洲/;
留/;学/;美/;国/;
美/;国/;留/;学/;
英/;国/;留/;学/;
留/;学/;英/;国/;
搬/;家/;公/;司/;
上/;海/;搬/;家/;公/;司/;
搬/;场/;公/;司/;
上/;海/;搬/;场/;公/;司/;
北/;京/;搬/;家/;公/;司/;
货/;架/;
货/;架/;
长/;途/;搬/;家/;
北/;京/;长/;途/;搬/;家/;
北/;京/;长/;途/;搬/;家/;公/;司/;
长/;途/;搬/;家/;公/;司/;
Google排/;名/;
汽/;车/;网/;
货/;架/;
quilting machine
aluminium easel
写/;字/;楼/;出/;租/;
写/;字/;楼/;
翻/;译/;公/;司/;
北/;京/;翻/;译/;公/;司/;
北/;京/;驾/;校/;

肺/;癌/;
肺/;癌/;
直/;肠/;癌/;
直/;肠/;癌/;
珍/;香/;胶/;囊/;
珍/;香/;胶/;囊/;
胃/;癌/;
胃/;癌/;
结/;肠/;癌/;
肝/;癌/;
肝/;癌/;
乳/;腺/;癌/;
乳/;腺/;癌/;
食/;道/;癌/;
食/;道/;癌/;
清/;肺/;散/;结/;丸/;
光/;盘/;刻/;录/;
光/;盘/;制/;作/;
光/;盘/;印/;刷/;
清/;肺/;散/;结/;丸/;
货/;架/;
猎/;头/;
婚/;庆/;
管/;道/;疏/;通/;
北/;京/;疏/;通/;管/;道/;
北/;京/;疏/;通/;下/;水/;道/;
北/;京/;管/;道/;疏/;通/;
北/;京/;高/;压/;清/;洗/;
清/;洗/;管/;道/;
北/;京/;海/;淀/;区/;管/;道/;疏/;通/;
北/;京/;密/;云/;区/;管/;道/;疏/;通/;
Led显/;示/;屏/;
礼/;品/;
礼/;品/;公/;司/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;
喜/;来/;健/;

Posted by knc on Wednesday, 09.10.08 @ 07:17pm | #3599

lgx112358xxx11
lgx112358xxx
wow gold
wow gold
wow gold
[url=http://item4sale.com/Buy%20Final%20Fantasy%20XI%20Gil.html]wow gold[/url]
[url=http://item4sale.com/Buy%20World%20of%20Warcraft-US%20GOLD.html]wow gold[/url]
item4sale
item4sale
item4sale
item4sale
item4sale
干/;洗/;连/;锁/;店/;
干/;洗/;连/;锁/;店/;
连/;锁/;加/;盟/;洗/;衣/;店/;
连/;锁/;加/;盟/;洗/;衣/;店/;
干/;洗/;设/;备/;价/;格/;
干/;洗/;设/;备/;价/;格/;
连/;锁/;店/;
连/;锁/;店/;
CAD软/;件/;下/;载/;