So, I've been reading up on Functions and I like them! However, I need some help using variables in functions, since it's kind of confusing.
I just made these functions:
<?php
function Protect($var){
$var = mysql_real_escape_string(htmlentities(stripslashes($var)));
}
function Preserve($var){
$content = nl2br(str_replace(" ", " ", $var));
}
?>
Neither of them work. Dunno why.
From what I understand...
If I do this:
function HelloThere($var){
Then when I use the function I can go...
HelloThere($hello);
And the $hello variable will be substituted for $var from when I defined the function. Am I not right, confusing, or misled? Please help!!!
Thanks.
PS I originally had this, but it didn't work:
<?php
function Protect($var){
$variable = $var;
$protect1 = mysql_real_escape_string($variable);
$protect2 = htmlentities($protect1);
$protect3 = stripslashes($protect2);
}
function Preserve($var){
$content = nl2br(str_replace(" ", " ", $var));
}
?>
disabling a button server-side then re-enabling client-side breaks button postback
I have a tabbed container and a button (not in the container) on a page. If the first tab is selected, I want the button enabled. If the second is selected, I want the button disabled. I have created
how to load a Sys file with system load and call images?
normally you need register the module as a service with CreateService, and start the service
php mysql query from input textbox
Hi,I have a text box, in that i have given the mysql query. I can able to get the query in variable. But after submit button i want to get data to be printed on a same page. But how can i print the
Just a white page
Okay so, my website, when I click SignUp on it it takes me to /join.php but its a complete white page.Take a look below. If you know what it is please helphttp://www.testime.tk/
cPanel API
Hi Guys,Need a little guidance. I'm trying to get my script to communicate with cPanel (or WHM) to show certain statistics, for example, how much space/bandwidth has been used.I have been reading
Question about GD library
I am trying to make an image that shows a random quote from my database.However I want the quote to do 2 things.1. It needs to word wrap so that it stays on the image2. It needs to be the biggest font
calendar dates and hours compare problem
i have a calendar in wordpress, everything works great except that i can make 2 meetings at the same date, time and room without receiving any error i don't know where to start to compare the days
php - xml what is the best way to do this.
IN essence I want to have a script calling the info from the database.. I have no problem thus far, next I want to take said data and write it to an xml file. no problem here either. I think I have
Why is this function returning a false value when it shouldn't be??
This is in an include file. I want it to check a value in an html form and see if it's just white space, is numbers, is empty etc.Code: (text) [Select]<?phpfunction
GMail like Chat in ASP.NET
Hi,Can anyone suggest me, how to incorporate GMail like chat in my existing ASP.Net application.I want that all my ownline user should able to chat in(1-1) fashion.Please suggest.Thanks