Search found 8 matches

by vmmene
Fri Feb 20, 2009 4:45 am
Forum: Databases
Topic: Please help me PHP geniuses! U are my last hope!
Replies: 12
Views: 7657

Re: Please help me PHP geniuses! U are my last hope!

exceute this sql statement show tables in your command line after selection of your database.This command will give the the list of tables in your database.This will help you to chek whether your table is exist in your database or not.
by vmmene
Fri Feb 20, 2009 3:43 am
Forum: General Discussion
Topic: How restrict the IP access the my website
Replies: 5
Views: 723

Re: How restrict the IP access the my website

use the $_SERVER['REMOTE_ADDR'] to capture the ip and check the ip's if u want allow the ip the redirect to your site othere wise block that ip.
by vmmene
Fri Feb 20, 2009 3:35 am
Forum: PHP - Code
Topic: Code error
Replies: 1
Views: 462

Re: Code error

In place of this statement echo '<a href="', $scripturl, '?action=pm"><font color="#FFFFFF">',$context['user']['unread_messages'] == 0 use this statement it will solve your problem '<a href="', $scripturl, '?action=pm"><font color="#FFFFFF">' . ($context['user...
by vmmene
Fri Feb 20, 2009 3:29 am
Forum: PHP - Code
Topic: MySQL Row Count PHP
Replies: 2
Views: 1139

Re: MySQL Row Count PHP

echo your sql statement then run it on mysql it will give the exact results.
by vmmene
Wed Feb 18, 2009 3:53 am
Forum: General Discussion
Topic: Back button history.go()
Replies: 5
Views: 465

Re: Back button history.go()

Store all the values filled by the user into session.
by vmmene
Wed Feb 18, 2009 3:30 am
Forum: PHP - Code
Topic: [SOLVED] Removing extension from uploaded file
Replies: 7
Views: 553

Re: Removing extension from uploaded file

just break it by period.use explode function of php to do this.
by vmmene
Wed Feb 18, 2009 3:16 am
Forum: PHP - Code
Topic: Loading data from MySQL table, by a value found in database.
Replies: 9
Views: 759

Re: Loading data from MySQL table, by a value found in database.

pr_id is your primary key?... what is the datatype of pr_id field??
by vmmene
Mon Feb 09, 2009 3:31 am
Forum: PHP - Code
Topic: Excel Reader using "Spreadsheet_Excel_Reader class"
Replies: 3
Views: 2559

Excel Reader using "Spreadsheet_Excel_Reader class"

I using this Spreadsheet_Excel_Reader class to read the excel file. while reading the class i am getting the following error. Notice: Undefined property: OLERead::$wrkbook in C:\wamp\www\test\excel_reader\oleread.inc.php on line 224 Notice: Undefined index: in C:\wamp\www\test\excel_reader\oleread.i...