Search found 57 matches

by louiegiezer
Sun May 26, 2013 7:29 am
Forum: PHP
Topic: Strict Standards Error...
Replies: 6
Views: 1098

Re: Strict Standards Error...

well i actually do that... it fix the error... but what is that? is it a problem of the script? or something?....
by louiegiezer
Sun May 26, 2013 7:04 am
Forum: PHP
Topic: Strict Standards Error...
Replies: 6
Views: 1098

Re: Strict Standards Error...

the script works fine....
but they appear that line in all pages...
by louiegiezer
Sun May 26, 2013 5:03 am
Forum: PHP
Topic: Update Query
Replies: 3
Views: 1047

Update Query

Hello Anyone... I'm gonna make sure if this a good one for updating database... even the function is work... I'm looking for a good idea... [syntax=php] if($_POST['submitEditForm']) { $update = mysql_query("UPDATE resume SET name='$_POST[name]', age='$_POST[age]', sex='$_POST[sex]', mobile='$_P...
by louiegiezer
Sun May 26, 2013 3:32 am
Forum: PHP
Topic: Strict Standards Error...
Replies: 6
Views: 1098

Strict Standards Error...

Strict Standards: Only variables should be passed by reference in

i have this error in this line...

$page = substr(end(explode('/', $_SERVER['SCRIPT_NAME'])), 0, -4);
by louiegiezer
Fri May 24, 2013 2:58 pm
Forum: PHP
Topic: DATE AND TIME FORMAT
Replies: 3
Views: 922

Re: DATE AND TIME FORMAT

thanks dude... that is much better... :D
by louiegiezer
Fri May 10, 2013 4:40 am
Forum: PHP
Topic: DATE AND TIME FORMAT
Replies: 3
Views: 922

DATE AND TIME FORMAT

how can i add am/pm in my time....
i try this one '%d/%m/%Y %H:%i:%s A' but it doesn't work...


problem solved.... i change the A into %p... :lol:
by louiegiezer
Fri Mar 09, 2012 2:45 pm
Forum: Suggestions
Topic: D'load link for vdo tutorials PLEASE?
Replies: 5
Views: 2443

Re: D'load link for vdo tutorials PLEASE?

you can download youtube downloader google chrome extension for mp4,mkv,flv HD format..suggestion only :D
by louiegiezer
Fri Feb 10, 2012 1:16 am
Forum: Suggestions
Topic: Admin Panel Tutorial
Replies: 8
Views: 1706

Re: Admin Panel Tutorial

thanks jacek..im so spoiled in you haha :lol:
by louiegiezer
Thu Feb 09, 2012 1:05 am
Forum: Suggestions
Topic: Admin Panel Tutorial
Replies: 8
Views: 1706

Re: Admin Panel Tutorial

for the blog purpose...i know that this tutorial may get the idea on how to make admin control and they use for the other projects.. :D
by louiegiezer
Tue Feb 07, 2012 10:34 pm
Forum: General Chat
Topic: I want to Make My own Online RPG Game.
Replies: 6
Views: 1362

Re: I want to Make My own Online RPG Game.

w0w this is so interesting...nice idea *RPG game btw..good luck guys...
by louiegiezer
Tue Feb 07, 2012 3:44 am
Forum: Suggestions
Topic: Admin Panel Tutorial
Replies: 8
Views: 1706

Admin Panel Tutorial

try to make this one i think this is very helpful tutorial... :roll:
by louiegiezer
Thu Dec 08, 2011 9:02 pm
Forum: Other
Topic: php books
Replies: 8
Views: 1844

Re: php books

Extra Tips: you don't need to buy a book in php there's a lot of option that you can do to learn php if you are beginner i recommend you to try this site http://www.w3schools.com
by louiegiezer
Tue Dec 06, 2011 4:31 am
Forum: PHP
Topic: Blog Tutorial + Pagination -some problems..
Replies: 8
Views: 1004

Re: Blog Tutorial + Pagination -some problems..

you don't need to put this on your code "$post = get_posts();" kill this part Try to do this... [syntax=php] <?php foreach(fetch_titles($page, 5) as $post){ ?> <div id="titel"> <a class="titeltxt" href="blog_read.php?pid=<?php echo $post['id']; ?>"><?php echo ...
by louiegiezer
Thu Nov 24, 2011 1:31 pm
Forum: Tutorials
Topic: Blog Tutorial - Read Page Problems
Replies: 7
Views: 1674

Re: Blog Tutorial - Read Page Problems

You forgot to put a $ sign at line 13 make it $sql...
by louiegiezer
Sun Nov 20, 2011 6:31 pm
Forum: Tutorials
Topic: Pagination page
Replies: 8
Views: 944

Re: Pagination page

:cry: well its better if you give the exact code in prev and next..
by louiegiezer
Fri Nov 18, 2011 4:42 pm
Forum: Tutorials
Topic: Pagination page
Replies: 8
Views: 944

Re: Pagination page

here's the code user_list.php [syntax=php] <?php include('core/init.inc.php'); $page = (isset($_GET['page'])) ? (int)$_GET['page'] : 1; ?> <html> <head> <title>Pagination Test</title> </head> <body> <div> <?php foreach (fetch_users($page, 5) as $user){ echo "<p>{$user}</p>"; } $total_pages...
by louiegiezer
Fri Nov 18, 2011 9:09 am
Forum: Tutorials
Topic: Pagination page
Replies: 8
Views: 944

Re: Pagination page

thanks. Lets begin :lol:
by louiegiezer
Thu Nov 17, 2011 5:35 pm
Forum: Introductions
Topic: Hi Guys!
Replies: 2
Views: 845

Hi Guys!

I like to be a part of this forum and just say thanks to admin jacek for the php tutorials ;)...
by louiegiezer
Thu Nov 17, 2011 5:21 pm
Forum: Tutorials
Topic: Pagination page
Replies: 8
Views: 944

Pagination page

Hey Guys!

I'm planning to implement the pagination tutorial in my website made by Mr.Jacek so in this tutorial instead of the next page is a number i want to change it in Next and Previous is this possible?
by louiegiezer
Sun Nov 13, 2011 7:58 pm
Forum: Tutorials
Topic: Categorize my blog topic...
Replies: 17
Views: 1810

Re: Categorize my blog topic...

thanks i still confused in array...
by louiegiezer
Sun Nov 13, 2011 9:51 am
Forum: Tutorials
Topic: Categorize my blog topic...
Replies: 17
Views: 1810

Re: Categorize my blog topic...

Undefined index in line 4 and 5 am i correct at this line? index.php [syntax=xhtml] $posts = get_categories(); foreach ($posts as $get){ ?> <label><?php echo $get['name']; ?></label> <label><?php echo $get['post_title']; ?></label> <?php } ?> [/syntax] posts.php [syntax=php] function get_categories(...