TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Showing results 1 to 25 of 76
Search took 0.02 seconds.
Search: Posts Made By: rguy84
Forum: General 03-15-2010, 04:20 AM
Replies: 16
Views: 810
Posted By rguy84
You may have to look into how IIS handles it then

You may have to look into how IIS handles it then
Forum: General 03-15-2010, 03:54 AM
Replies: 6
Views: 536
Posted By rguy84
This is a multi faceted problem, however in the...

This is a multi faceted problem, however in the third post the PHP is incorrect. Try:<?php include($_SERVER['DOCUMENT_ROOT']."/menus/graysolutionsmenu.php");?>
Forum: General 03-15-2010, 03:41 AM
Replies: 16
Views: 810
Posted By rguy84
No there is not, php happens when you hit/load a...

No there is not, php happens when you hit/load a site. The .htaccess denies them from hitting
Forum: Advanced PHP Programming 02-19-2010, 05:17 PM
Replies: 7
Views: 1,484
Posted By rguy84
Are you legitimately still working on this? I...

Are you legitimately still working on this? I only ask since it took over 3 months to get a reply. I haven't used Joomla much, so I don't know what you mean by it looks like joomla. Remember all a...
Forum: Advanced PHP Programming 11-16-2009, 01:31 AM
Replies: 7
Views: 7,020
Posted By rguy84
Have you tried doing any of it on your own?

Have you tried doing any of it on your own?
Forum: MySQL & Databases 11-09-2009, 11:15 PM
Replies: 12
Views: 2,793
Posted By rguy84
Then did you look into cases like I suggested?

Then did you look into cases like I suggested?
Forum: General 11-09-2009, 11:07 PM
Replies: 6
Views: 2,510
Posted By rguy84
Ah ok Tanax. I would have to agree with VI. I...

Ah ok Tanax. I would have to agree with VI. I know with access you can split the database to front and back ends. A system this big, seems to call for this. I don't know how to do that with a mysql...
Forum: MySQL & Databases 11-09-2009, 10:50 PM
Replies: 12
Views: 2,793
Posted By rguy84
wow sorry I misread the thread. No need to bite...

wow sorry I misread the thread. No need to bite my head off
Forum: General 11-09-2009, 06:32 PM
Replies: 6
Views: 2,510
Posted By rguy84
There is something called relational databases....

There is something called relational databases.

So for example, they might have a table called members, which would have a field (column) tthat has an auto-increasing number, your first, last name,...
Forum: MySQL & Databases 11-06-2009, 04:33 AM
Replies: 12
Views: 2,793
Posted By rguy84
yes is not valid SQL... If you need DIFFERENT...

yes

is not valid SQL...
If you need DIFFERENT data sets displayed, why not make DIFFERENT queries?
Forum: Advanced PHP Programming 11-06-2009, 04:15 AM
Replies: 7
Views: 1,484
Posted By rguy84
I have made menus like this using straight php,...

I have made menus like this using straight php, not a database. how are the pages saved in the database?
Forum: MySQL & Databases 11-06-2009, 04:04 AM
Replies: 12
Views: 2,793
Posted By rguy84
I am not understanding what you are saying at...

I am not understanding what you are saying at all. Can you provide sample data, and what your result should look like?

Why would you use 3 queries to get data from one table, that seems terribly...
Forum: General 11-06-2009, 03:32 AM
Replies: 4
Views: 617
Posted By rguy84
Like VI said, it depend on the system. I know...

Like VI said, it depend on the system. I know some people in the camp of you never ever delete records.

One thing you can do is make a deleted field.If the said field = 1, it is effectively...
Forum: Member Introductions 11-06-2009, 03:22 AM
Replies: 2
Views: 600
Posted By rguy84
welcome aboard

welcome aboard
Forum: General 08-25-2009, 10:53 PM
Replies: 1
Views: 568
Posted By rguy84
You could set up a combobox/textbox that asks for...

You could set up a combobox/textbox that asks for what starting rank you want, and another for how many they want listed.

$rank = $_POST['rankcmb'];
$listing = $_POST['listingCmb'];
$i =...
Forum: Advanced PHP Programming 08-21-2009, 11:27 PM
Replies: 3
Views: 530
Posted By rguy84
just what Jaoude said... ...FROM forum_posts...

just what Jaoude said...

...FROM forum_posts WHERE author_id = '$Author_id'

we are assuming forum_posts has the following fields
post_id //primary key
thread_id // foreign key linked to a table...
Forum: Absolute Beginners 08-21-2009, 09:35 PM
Replies: 5
Views: 855
Posted By rguy84
I have been told by several people that it is...

I have been told by several people that it is better to just save the files in a directory and save paths to a db
Forum: Absolute Beginners 08-21-2009, 09:26 PM
Replies: 5
Views: 1,558
Posted By rguy84
Not sure but try changing: $wpdb->query("INSERT...

Not sure but try changing:

$wpdb->query("INSERT INTO wp_example (id, field1, field2) VALUES (0, '$field1', '$field2')");

to

$wpdb->query("INSERT INTO wp_example (field1, field2) VALUES...
Forum: General 08-19-2009, 06:15 PM
Replies: 2
Views: 678
Posted By rguy84
yes it was a typo

yes it was a typo
Forum: General 08-13-2009, 08:21 AM
Replies: 2
Views: 678
Posted By rguy84
Making an edit script...

Not the best title but here it goes. I am making an application that is a touring schedule that books people for speaking events. The way I am doing the dates looks like this:


<label...
Forum: General 07-15-2009, 06:47 PM
Replies: 3
Views: 1,122
Posted By rguy84
Just a usability tip, I'd go one step further and...

Just a usability tip, I'd go one step further and spit that stuff out in a table vs a pre after you get the data sorted. :)
Forum: Member Introductions 07-15-2009, 06:40 PM
Replies: 5
Views: 588
Posted By rguy84
welcome to talkphp

welcome to talkphp
Forum: Absolute Beginners 07-15-2009, 06:37 PM
Replies: 4
Views: 764
Posted By rguy84
why can't you do: <select...

why can't you do:

<select style="margin-right:0.25em" name="cmbModPCProg">
<?php
echo "<option>Select a Program</option>\n".
"\t\t<option>----------</option>\n";
$qGetProg = "SELECT progID,...
Forum: MySQL & Databases 07-14-2009, 06:24 AM
Replies: 14
Views: 947
Posted By rguy84
Adam I am getting an error for your query (after...

Adam I am getting an error for your query (after I put in my info)

EDIT I take that back, sql issues on my end.
Forum: Tips & Tricks 07-14-2009, 06:02 AM
Replies: 5
Views: 1,407
Posted By rguy84
If PHP hits a bug and PHP isn't rendered, it...

If PHP hits a bug and PHP isn't rendered, it won't be displayed... Sometimes firefox gives you the php tags... But I don't know what the point you are wanting to make. Cause if you put your functions...
Showing results 1 to 25 of 76

 

All times are GMT. The time now is 07:29 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design