Forum: PHP Jun 9th, 2007 |
| Replies: 6 Views: 1,508 There's a good contact form here (http://www.epleweb.com/php/) :) |
Forum: PHP Jun 9th, 2007 |
| Replies: 2 Views: 827 Let's see:
<?php
function quotereplace($text) {
$text = str_replace("\"", "", $text);
return $text;
}
?>
And then: |
Forum: PHP Jun 8th, 2007 |
| Replies: 2 Views: 905 http://www.andersmoen.com/2007/05/24/pagination/
Yes, I know this script gives out some errors, but that's because of the stupid way WordPress treats my posts..it makes " and ' special characters... |
Forum: PHP Jun 8th, 2007 |
| Replies: 5 Views: 3,655 $link = mysql_connect('localhost', 'root', "");
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
$query = "INSERT INTO information... |
Forum: Site Layout and Usability May 9th, 2007 |
| Replies: 15 Views: 4,533 Well...not really, but if you add me to msn (msn [at] andersmoen.com) I can help you make one...it's not really hard.
But if you don't want to make your own you always have phpBB (http://phpbb.com) |
Forum: PHP Mar 21st, 2007 |
| Replies: 8 Views: 3,665 Well..maybe you need something between " and " in line 15?
$keywords = explode("$string", $search);
Like that maybe? |
Forum: PHP Mar 21st, 2007 |
| Replies: 16 Views: 8,386 |
Forum: PHP Mar 20th, 2007 |
| Replies: 12 Views: 3,312 People can easily come with sql-injections if you use that code.
You have to use for example mysql_real_escape_string or something else. Read about safety at php.net (http://php.net/) |
Forum: PHP Mar 20th, 2007 |
| Replies: 16 Views: 8,386 Did you save the file in
C:/Program files/xampp/htdocs/your_file.php ?
Maybe not in program files, but at least where the xampp folder is ;) |
Forum: Site Layout and Usability Mar 6th, 2007 |
| Replies: 15 Views: 4,533 Oh yeah! It's easy to make your own simple forum.
Here's the simple one I made (http://andersmoen.hotserv.dk/test/forum/) (I didn't make any design to it, because then it's easier to just to copy... |
Forum: PHP Mar 6th, 2007 |
| Replies: 2 Views: 2,468 Well...your line 12:
<?PHPechoMiEncabezado("images/banner3.swf",$Xlenguaje);?>
Is not right.
Try this instead:
<?PHP echo 'MiEncabezado("images/banner3.swf",$Xlenguaje)'; ?> |
Forum: C++ Feb 16th, 2007 |
| Replies: 5 Views: 1,160 I tried your code, and it works fine for me.
Edit: it didn't stop when I had won...lol =/
Do you know how I can insert images, and maybe get it on fullscreen? |
Forum: ASP Dec 7th, 2006 |
| Replies: 2 Views: 1,411 Hello.
I want to make forms in ASP (login and contact forms)
Let's start with the contact page: (where the form is)
(is this right, and am I gonna call it for example; contact.html or... |
Forum: JavaScript / DHTML / AJAX Oct 21st, 2006 |
| Replies: 6 Views: 19,777 Can I make several users for this little script?
And if I can, how?
Hope it works
(And by the way, when I use it, it says on the status bar "Something's wrong on the site" How come?)
... |