
ollie007
Members-
Posts
61 -
Joined
-
Last visited
Everything posted by ollie007
-
is this forum on UNMODDED IPB4?
ollie007 replied to ollie007's topic in PHPFreaks.com Website Feedback
thanks to phpfreaks, they become master hackers hahah -
is this forum on UNMODDED IPB4?
ollie007 replied to ollie007's topic in PHPFreaks.com Website Feedback
surprised they found an exploit in version 3 when you guys are masquerading as version 4 -
is this forum on UNMODDED IPB4?
ollie007 replied to ollie007's topic in PHPFreaks.com Website Feedback
modding introduces its own vulnerabilities..... this is too modern a theme to be ipb 3 -
is this forum on UNMODDED IPB4? Ouch !!
-
people are getting their knickers in a knot over this....welcome to the internet boys and gurls....LOL if you werent expecting this then well.....
-
upgrade between versions 2 but there is an extras folder with extra config's, so do i keep the whole /config folder?
-
ok how do i add html to php source.... do i do an echo or print or add a joining variable and how much html can i add to one line?? $var= 'html'; $var.='extra html'; return $var;
-
what do keep to keep my settings?
-
is a fancy name for a collection of functions, with an output thats changeable depending on what you feed it
-
how can i make a character of the font higher than it is wide and it must work on normal browser not CSS1000
-
when IE encounters display:none; it wont finish loading the page and says, "Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) Timestamp: Thu, 18 Jun 2009 03:48:24 UTC Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917) Line: 0 Char: 0 Code: 0 URI: http://domain.com/index" how can i prevent this?
-
what are the metods to prevent database injection? striplashes, striptags?
-
create table `Special Form_Copy` like `Special Form_Copy` Query failed: Not unique table/alias: 'Special Form_Copy' although this query failed, what is the use of the LIKE qualifier in this case?
-
ok when inserting tables in mysql how can i make it so it takes spaces? someone was saying to use " `` "
-
well how do i remove all whitespaces?
-
the manual does nt make it clear .... it removes all whitespace in a string? " the cat jumps over the rat " => "thecatjumpsovertherat" ?
-
hi hi, just some clarification please 1. do i need to declare an array. eg $array = array(); or just add to an array: eg. $array[] = $var; 2. if i have an array: $array = (1,2,3,4,5); and i declare $array[$key] to get my values. Now if the array happens to have one value $array = (1); can i call this value simply with $array eg if ($array == 1) OR do i need to specify the key? eg if ($array[0] == 1) cheers
-
whats the problem with this? sometimes i can delete a table column with a space in its name and sometimes i cant? whats the correct syntax for this?
-
How to declare default values for function()
ollie007 replied to ollie007's topic in PHP Coding Help
you aint being very helpful ! -
function name($var=''){} is that how its done/
-
no, $type is a string, so do i need the $ sign? $type='name' $type='address'
-
$_POST[$type] is that how i write the variable or do i need ".$type." ?
-
what does it mean?
-
when do you unset a variable? if it s loating around can it be overriden? or does it get lost and locks up?