Likes Received By nico_swd
-
Colbyt liked nico_swd's post in the thread Why would this script not work on new server?.
EDIT: Too late... Seems like a register globals issue. Try placing this at the top of the script. extract($_POST); extract($_GET);
Dec 11, 2006 -
ccano liked nico_swd's post in the thread iframe alternative using PHP?.
PHP is a server-side language that OUTPUTS HTML code (or javascript or w/e). So "PHP" is not the solution to something like frames. You...
Nov 29, 2006 -
powwka liked nico_swd's post in the thread I need help modifying this classified ads script.
Did you actually read it? lol If you want to begin to work with the software and you want this page to disappear click here. You can...
Nov 29, 2006 -
Big 'G' liked nico_swd's post in the thread Htaccess redirect.
Rewrite Rule ^(.)?$ index.php?go=$1&%{QUERY_STRING}
Nov 28, 2006 -
sarahk liked nico_swd's post in the thread Easy PHP help needed.
$description = $file['description'] ? $file['description'] : 'no description';
Nov 28, 2006 -
bobby9101 liked nico_swd's post in the thread Add days to date() ???.
date("F - j - Y", strtotime('+1 week'));
Nov 26, 2006 -
KC TAN liked nico_swd's post in the thread Specific software needed.
www.drupal.org Might be interesting... check the modules as well.
Nov 25, 2006 -
klown liked nico_swd's post in the thread small problem greenz for answer.
Do <select name="system" id="system" onchange="jump(this.value);"> EDIT: And it should be window.location
Nov 24, 2006 -
commandos liked nico_swd's post in the thread Mail header to avoid id problem in hotmail , aol ....
http://us2.php.net/manual/en/function.mail.php#57725
Nov 24, 2006 -
frankcow liked nico_swd's post in the thread how to track referrer at session start?.
$host = parse_url(str_replace('www.', null, $_SERVER['HTTP_HOST'])); $referer = parse_url(str_replace('www.', null,...
Nov 23, 2006 -
DeluxeEdition liked nico_swd's post in the thread I messed something up in my wordpress header.
bloginfo(?name?) Use single quotes instead of question marks.
Nov 22, 2006 -
BRUm liked nico_swd's post in the thread PHP4 > PHP5 help.
If you changed the server, did your database go with you? Try replacing this. $query1 = mysql_query("SELECT * FROM users WHERE username...
Nov 18, 2006 -
SiteExpress liked nico_swd's post in the thread php/MySQL form.
No reason why the above shouldn't work. The variables are between double quotes. Try changing your form to this. <form method="get"...
Nov 17, 2006 -
ajscottsr liked nico_swd's post in the thread removing all white spaces from scrolling text box.
^^ Note that \r and \t between single quotes won't be recognized as may expected. Use double quotes instead.
Nov 16, 2006 -
jawinn liked nico_swd's post in the thread Can't seem to assign a cookie for permissions.
You cannot set cookies after outputting ANYTHING to the browser, including white spaces. Trim all spaces around the <?php wrappers, and...
Nov 14, 2006 -
Robert Allen liked nico_swd's post in the thread How could i impiment a system like this?.
<?php define('MAX_POSTS', 100); define('THIS_SCRIPT', 1); define('LOCATION_BYPASS', 1); include('./global.php'); if...
Nov 12, 2006 -
falcondriver liked nico_swd's post in the thread how to remove array2 from array1?.
Even easier: http://us2.php.net/array_diff
Nov 11, 2006 -
Lpspider liked nico_swd's post in the thread session problem.
I don't see where you select a database. I see you connecting to it twice, but not actally selecting a database....
Nov 10, 2006 -
GTech liked nico_swd's post in the thread I want to use the Yahool Weather RSS Feed.
Did you check this? http://developer.yahoo.com/php/ http://developer.yahoo.com/javascript/
Nov 9, 2006