Search found 16 matches
- Tue May 13, 2014 1:57 pm
- Forum: Tutorials
- Topic: User profile tutorial
- Replies: 1
- Views: 3619
Re: User profile tutorial
Try removing the , from `gender`,
- Sat May 10, 2014 8:35 pm
- Forum: PHP
- Topic: please help with regular expression
- Replies: 1
- Views: 4639
Re: please help with regular expression
You can use substr() ?
$str = "http://youtube.com/watch?v=12324567"; $start = strpos($str, "="); $newstr = substr($str, $start); $newstr[0] = ""; echo $newstr;Probably not the best way of doing it, but it does the job.
- Mon May 05, 2014 11:41 am
- Forum: SQL
- Topic: Selecting the highest-minimum value?
- Replies: 0
- Views: 29771
Selecting the highest-minimum value?
Im trying to make an IP-address register in php/mysql. And I want a function to get the "first avalible", but I'm not sure on how to do this.. (Not even sure if the forum is still somewhat active?) Say you have a table with 192.168.0.1, 192.168.0.2, 192.168.0.3, 192.168.0.4, 192.168.0.5.. ...
- Thu Dec 01, 2011 9:35 am
- Forum: Tutorials
- Topic: PHP Registation/Login System Problem
- Replies: 15
- Views: 2841
Re: PHP Registation/Login System Problem
Altho this wont cause that error, I thought I'd just point it out.
Other than the dirname(__FILE__); in init.inc.php. I see only html errors in the login.php file.
foreach ($errors as $error){ echo "<li>{error}</li>"; }is missing a $
Other than the dirname(__FILE__); in init.inc.php. I see only html errors in the login.php file.
- Mon Oct 31, 2011 12:21 pm
- Forum: Tutorials
- Topic: Blog problem with "DATE_FORMAT"
- Replies: 5
- Views: 2300
Re: Blog problem with "DATE_FORMAT"
xatron wrote:What?
Where do i missed something?
DATE_FORMAT(`comments`,`last_comment`, `%d/%m/%Y %H:%i:%s`) AS `date`) AS `lastcomment`
- Wed Oct 12, 2011 8:30 pm
- Forum: Suggestions
- Topic: IRC?
- Replies: 22
- Views: 8976
Re: IRC?
He has a server so why not just run an eggdrop? or a bnc, no need for bots if he has a stable server :-) I was quite the IRC-geek back in the days.. Thank God thats changed.. Sooo many hours scripting on a useless script.. EDIT: OH NOES! I dugg up an "old" post! Note to self: Learn to read...
- Wed Oct 12, 2011 8:19 pm
- Forum: Tutorials
- Topic: Use profile script isn't working
- Replies: 9
- Views: 2483
Re: Use profile script isn't working
It should bepeterr wrote:$result = mysql_query('SELECT 'id' AS 'id', 'username' AS 'username' FROM 'users'');
SELECT `id`, `username` FROM `users`
You've switched on ` and '
- Wed Oct 12, 2011 6:27 am
- Forum: PHP
- Topic: Two parse errors and one smaller issue with user accounts.
- Replies: 12
- Views: 2178
Re: Two parse errors and one smaller issue with user account
Your missing a $ in your {path} should be {$path}
Thats the only error i can spot.
Thats the only error i can spot.
- Tue Oct 11, 2011 6:01 am
- Forum: PHP
- Topic: Two parse errors and one smaller issue with user accounts.
- Replies: 12
- Views: 2178
Re: Two parse errors and one smaller issue with user account
Could you post your full code?
It might be that you've forgotten a } somewhere
It might be that you've forgotten a } somewhere
- Mon Oct 10, 2011 12:32 pm
- Forum: PHP
- Topic: Two parse errors and one smaller issue with user accounts.
- Replies: 12
- Views: 2178
Re: Two parse errors and one smaller issue with user account
That should be
$_SESSION['username'] = htmlentities($_POST['username']);
- Mon Oct 10, 2011 7:41 am
- Forum: PHP
- Topic: Two parse errors and one smaller issue with user accounts.
- Replies: 12
- Views: 2178
Re: Two parse errors and one smaller issue with user account
You got an { where it should be (.Deer wrote:Parse error: syntax error, unexpected '{', expecting '(' in /home/username/public_html/register.php on line 17" Here's line 17: if (empty{$_POST['password']) || empty($_POST['repeat_password'])){
(empty{$_POST['password'])
- Fri Oct 07, 2011 11:07 am
- Forum: JavaScript
- Topic: jQuery/JavaScript based editors.
- Replies: 0
- Views: 1242
jQuery/JavaScript based editors.
I don't understand why I don't get any of those to work on my site. I download all files, but them in the directories, correct the <script/link> tags, and whatever else needs to be done. But when I upload it to my server and try to view it, I see only the regular <textarea>sometext</textarea> Latest...
- Tue Sep 20, 2011 6:39 am
- Forum: PHP
- Topic: Basic template system
- Replies: 6
- Views: 1395
Re: Basic template system
I guess I got unlucky on that query, its usually under 0.00004 =p
- Mon Sep 19, 2011 7:11 pm
- Forum: PHP
- Topic: Basic template system
- Replies: 6
- Views: 1395
Re: Basic template system
I figured it out.. Apparently my vps cant connect to database from external ip.. so I had to use localhost..
Anyways.. Thanks
Anyways.. Thanks
- Mon Sep 19, 2011 6:20 pm
- Forum: PHP
- Topic: Basic template system
- Replies: 6
- Views: 1395
Re: Basic template system
Try running the SQL in phpmyadmin. Most likely, you have messed up the JOIN somehow so that it returns 0 rows all the time. Noo, I've checked that 10 times now, and it returns correctly. "Showing rows 0 - 0 (1 total, Query took 0.4887 sec)" When I removed the get_posts(); function the sit...
- Mon Sep 19, 2011 5:44 pm
- Forum: PHP
- Topic: Basic template system
- Replies: 6
- Views: 1395
Basic template system
Hey guys, I'm just wondering if its possible to combine a "blog tutorial"-lookalike, and the basic template system from the tutorial? I get things working, but as soon as I start getting data from the database in the home.page.inc.php file, nothing is listed. This is what my home.page.inc....