| | |
Function variables
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
I made this function and the problem i have is that the Variavle $Time is not available to the whole program and what i mean by that is the function runs but doesn't set the variable to the whole thing and i have tested the function by doing echos.
Is there a way to set the variable in the function usable out side of the function.
[PHP]
function Times()
{
if (time() < mktime(12,00,00))
{
$Time = 'AM';
}
else
{
$Time = 'PM';
}
}
[/PHP]
Is there a way to set the variable in the function usable out side of the function.
[PHP]
function Times()
{
if (time() < mktime(12,00,00))
{
$Time = 'AM';
}
else
{
$Time = 'PM';
}
}
[/PHP]
•
•
Join Date: Aug 2005
Posts: 80
Reputation:
Solved Threads: 2
•
•
•
•
Originally Posted by ashneet
I made this function and the problem i have is that the Variavle $Time is not available to the whole program and what i mean by that is the function runs but doesn't set the variable to the whole thing and i have tested the function by doing echos.
Is there a way to set the variable in the function usable out side of the function.
[PHP]
function Times()
{
if (time() < mktime(12,00,00))
{
$Time = 'AM';
}
else
{
$Time = 'PM';
}
}
[/PHP]
[PHP]
global $Time;
[/PHP]
-Fredric
![]() |
Similar Threads
- static variables in python (Python)
- passing data from one function to another in C (C)
- function question (C)
- Pointer to function as an argument (C++)
- My logic must be ALL wrong , help on Average. (C)
- struct array and enum problems (C++)
Other Threads in the PHP Forum
- Previous Thread: Need some Help with PHP Craps game!
- Next Thread: Please HELP! 3 Problems with Form
| Thread Tools | Search this Thread |
ajax apache api array basics beginner binary bounce broken cakephp checkbox class cms code codingproblem combobox cron curl database date display dynamic echo email error file files folder form forms function functions google href htaccess html image include insert integration interactive ip java javascript joomla js limit link login mail menu mlm mobile multiple mysql nodes oop outofmemmory paging parse paypal pdf php problem procedure query radio ram random recursion regex remote return script search server sessions smash sms soap source space sql syntax system table tutorial up-to-date update upload url validation validator variable video web webapplications websitecontactform xml youtube





