simple question for experts

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
paranoic
Forum Newbie
Posts: 11
Joined: Wed Feb 18, 2009 8:30 am

simple question for experts

Post by paranoic »

where are $users $tmp $settings defined and what exactly those things are. i think i have problem with those thingsafter i sholuld write dot and for examle adress or contact name

thanx for help
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: simple question for experts

Post by requinix »

Somewhere in your site (and we don't know where, don't ask us) is

Code: Select all

$users = ...;
$tmp = ...;
$settings = ...;
They aren't defined by PHP but by some of your code.
paranoic
Forum Newbie
Posts: 11
Joined: Wed Feb 18, 2009 8:30 am

Re: simple question for experts

Post by paranoic »

but what are theyexactly what are they used for, could you give me any example pls

thx
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: simple question for experts

Post by requinix »

paranoic wrote:but what are theyexactly what are they used for, could you give me any example pls
We have no idea. It's your site, not ours. We aren't the ones familiar with it.

Like I said, it's not some PHP thing that happens on every site.
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: simple question for experts

Post by Benjamin »

paranoic, those can by anything that you want them to be.
Forum Rules wrote: 11. Please use proper, complete spelling when posting in the forums. AOL Speak, leet speak and other abbreviated wording can confuse those that are trying to help you (or those that you are trying to help). Please keep in mind that there are many people from many countries that use our forums to read, post and learn. They do not always speak English as well as some of us, nor do they know these aberrant abbreviations. Therefore, use as few abbreviations as possible, especially when using such simple words.
You may also what to read:
  1. General Posting Guidelines
  2. Posting Code in the Forums
  3. PHP Manual
  4. PHP Tutorials
Post Reply