Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~3K People Reached
Favorite Tags
Member Avatar for OnIIcE

Hi guys, im trying to upload files to my script and have hit an anoying problem. if the file is bigger than what I allow in in my php.ini config, the $_POST and $_FILE comes through empty - and I cant check that there's been a post to then check …

Member Avatar for veedeoo
0
96
Member Avatar for OnIIcE

Hello, I am looking for a way to stop variable scope leakage. I have a class with a function to include a page something like this: [CODE] class functions{ function getView($viewTheme, $viewType, $viewTask, $viewFunction, $pageID=null, $itemID=null){ $baseView = ROOTME.DIR_VIEWS.$viewType.'/'.$viewTheme.'/'.BASE_VIEW_DIR.$viewTask.'/'.$viewFunction.'.php'; if(file_exists($baseView)){ include($baseView); } } }[/CODE] My problem is, I am now …

Member Avatar for pritaeas
0
129
Member Avatar for OnIIcE

hi, im creating a simple image editor/drawer and im having problems with flicker when the canvas is refreshd on draw. ive got [CODE]frmPMain->DoubleBuffered = true;[/CODE] on my form, but im still getting bad flicker when i run my draw shape code such as [CODE]void Pixie_Draw::DragSquare( int X, int Y, int …

Member Avatar for luthor112
0
191
Member Avatar for OnIIcE

Hi guys! I was wondering if anyone has any decent references for mod_rewrite? Ive been scouring the web and found a few cheat sheets for it and managed to come up with [CODE] Options +FollowSymLinks RewriteEngine on RewriteRule search/(.*)/(.*)/?(.*)/(.*)/?(.*)/(.*)/?(.*)/(.*)/?(.*)/(.*)/$ /search.php?$1=$2&$3=$4&$5=$6&$7=$8 [/CODE] which works ok if all the 4 varibles are …

0
59
Member Avatar for Cranial Fool

Hi, I am working on a script that populates a table with a user's news entries. First I get the username from the URL, then go to the database and get the user_id. From the user_id, I query the news table for the user's news entries. [CODE] $idgrabber = "select …

Member Avatar for Dragonbaki
0
136
Member Avatar for OnIIcE

Hi guys, Im in the middle of writing my own custom cms, and ive found a frustrating bug I cannot get rid of! When the user logouts, they can use the back button the trace back through the pages theyve been on. However refreshing the page shows them as logged …

Member Avatar for P0lT10n
0
112
Member Avatar for OnIIcE

Is this possible? Well I know this method: [CODE] define('CLASSNAME', new CLASS(), true); [/CODE] dosnt work as I have tried it - but is there a special way to do it? thanks =) x

Member Avatar for pritaeas
0
85
Member Avatar for OnIIcE

hi guys! a quick question about good coding practice! is it safe/good to break from php and call a js function in the middle of a class? my code kind of looks like this: [CODE]class users{ function login(){ ///other login code ?> <script type="text/javascript"> $.cookie('cookname', '<?php echo $username ?>'); $.cookie('cookpass', …

Member Avatar for rajarajan2017
0
100
Member Avatar for OnIIcE

Hi im messing around with some jQuery and want to disable a link whilst it performs a ajax post (its adding/fetching somthing from a database) and i want to disable the link so it cant be multiclickd. [CODE]<a href=\"#\" id=\"seepages\">See Page</a>[/CODE] ive tried using [CODE]$("#seepages").unbind('click');[/CODE] but that dosnt work! =( …

Member Avatar for Airshow
0
263
Member Avatar for OnIIcE

hello, i was woundering if somone could point me in the right direction. Im making a CMS/socialnetworking script for fun and want to change how the url gets the data for profiles. at the moment its using the tradition $_GET['id'] thing from the broswer url, but id like to try …

Member Avatar for network18
0
94
Member Avatar for OnIIcE

[url]http://www.fredmyerscough.co.uk/myfiles/showborder.jpg[/url] im using some jquery stuff to make myself a new website, but when you press the image (used for the menu) a dashed border apears around it. im not sure what element this is called, since its not affected by border: none; in css. any help or advice on …

Member Avatar for codejoust
0
207
Member Avatar for OnIIcE

i bet alot of you may be sick of reading/having to explain about this - but how can i do it? ive read alot of websites with css based and js work arounds. but none of them seem to work! one did, but it messed the image up (resized it) …

Member Avatar for Troy III
0
343
Member Avatar for OnIIcE

hello, im soon to be starting a Masters in Multimedia Computing so have been thinking of a few ideas to do my project on. One of them was to make a mobile/multiplatform e-comic reader - supporting the cbr/cbz formats (which are both comic archives compressed as zip/rar). Would Java be …

0
71
Member Avatar for OnIIcE

Hi, im trying to create a image editor and Im currently working on a "history/reopen" image part in my menu. ive read loads into dynamicly creating menu items but have always failed when it has come to adding a function to it, but that is a differnt story all together …

0
67
Member Avatar for OnIIcE

Hello! I’ve started a project that allows users to edited wav files (flange, distortion) and but them in a sequence and make a loop. I want to be able to visualize the actual sound wave of the file (like if you dropped a sound file in Audacity (and then in …

Member Avatar for skatamatic
0
205
Member Avatar for OnIIcE

i want to be able to create dynamic buttons. so ive used the code : [CODE]TButton* Btn = new TButton(this);[/CODE] my first question is: how do i assign a function to the dynamic button?! my second question is how can i put the code into a loop as to be …

Member Avatar for tabassam
0
88
Member Avatar for OnIIcE

hello! im trying to rotate a tbitmap image using scanlines, and cant figure out how to do it! ive go it working moving pixel by pixel but i want to be able to speed it up using scanlines. im using borland 6 C++, and doin some reasearch they (borland) gave …

Member Avatar for OnIIcE
0
406
Member Avatar for OnIIcE

Hello, im trying to make a function that can paint a box of any size (and colour, using any ascii char) to the screen in order to make a game in asm. My problem is, when i try to make it print just one full line, it dosnt seem to …

Member Avatar for Evenbit
0
198