No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
20 Posted Topics
Hi everyone, Got a pesky little issue here with cookies. I have searched numerous forums and numerous posts of how to delete a cookie. So, I am much aware of this doing the trick: [code=php]setcookie('cookie_name');[/code] Basically where not assigning any value to a cookie will delete it. (This is just … | |
Re: Same issue with Satellite L500. Tried everything found throughout google. Beginning to think it's the processor. Wish I had a known-working one to test it out with! | |
Hi, Basically, I'm trying to parse a string into a char for submitting into an array, this is what I have so far: [CODE]String strVariable; Char charVariable; strVariable = "Some String"; charVariable = String.ParseString(strVariable);[/CODE] The bottom lines yields an error...is this possible to do? | |
I'm having an odd issue here. Basically, I have an AJAX response that is returning HTML that I'm using via innerHTML. The following is a portion of the AJAX response: [CODE]<img id='img_display' width='583px' style='margin-top:62px;' src='../galleries/gallery/img.png' alt='' />~<table ....[/CODE] The following is a small portion of my AJAX code: [CODE]var response … | |
Hello everyone, I'm having an issue that's only appearing in Internet Explorer browsers. It works fine in Firefox and Chrome. [CODE]var yDiff = wHeight - 102; [COLOR="Red"]login.style.top = yDiff+"px";[/COLOR][/CODE] The line of code highlighted in red is triggering an "invalid argument' error in IE browsers but not others. | |
Hi all, Basically what I'm trying to do is allow users to download multiple custom wallpapers I have made at the same time if they so choose to. Is this at all possible? Thanks, Zurom | |
Within a function, I am creating a new variable that contains an HTML element. The variable declaration works fine in Firefox for example, however it comes up "undefined" in Google Chrome. [CODE]function updateName(num) { name = document.getElementById("id_name_"+num); } [/CODE] | |
Hello all, I'm attempting to convert my current HTML table layout to a div layout. However, I'm running into snags here and there and I'm stuck on one that I need assistance with. [CODE]<div style="width:100%; display:none;" id="block_1_1"> <div style="width:50%; float:left; margin:0px; padding:25px; text-align:center;"> <div style="text-align:center; float:left; margin:0px;"> <img style="margin:4px;" src="picture.jpg" … | |
Hello all, I have a weird issue here. This chunk of code used to work, but no matter what I try, I just can't get it to work again. Basically, the AJAX response receives a string, the following is an example: [CODE]"1,5,5,1;2,5,5,1;3,5,5,1"[/CODE] So then I split the string by ";" … | |
Hi all, I'm currently using XAMPP and I have discovered that it's using PHP 5.2.9. So, I'm attempting to upgrade my PHP. I did the following: [B][U]Attempt #1[/U][/B] 1. Downloaded "php-5.3.0-Win32-VC9-x86.zip" from [url]http://windows.php.net/download/[/url] 2. Backed up current PHP folder 3. Extracted new files to C:\xampp\php\ (overwrote existing files) 4. Renamed … | |
Hi all, Having an issue with "selectedIndex" (for a select field). Basically I'm creating XML code via a server-side PHP file and retrieving this code through AJAX. Once I retrieve the data, I'm placing it in their appropriate fields. This is the XML output: [CODE='XML']<response> <data> <row> <item>ProductEight</item> </row> <row> … | |
Hi all, Having a strange issue here. To help explain my situation, I have some images I'd like to include. This first image is of one of two user input forms. Notice in the top left of the picture, the second tab is selected. [IMG]http://www.abexal.org/image_1.jpg[/IMG] The arrow is pointing to … | |
I can't seem to figure out this simple issue. Basically, I'm doing an integer validation to ensure a user does not exceed the range of a "BIGINT" for MYSQL. As you know, the range of a BIGINT is: -9223372036854775808 to 9223372036854775807 So, to test the validation, I used: -9223372036854775809 and … | |
Hi all, I'm creating a fairly large web-application that uses a reasonable amount of AJAX. My question is; will it cause problems (in terms of process speed, overall performance and most importantly if it's actually possible) to run this application from multiple computers? Primarily if, for example, two separate computers … | |
Hi all, Been at this for a while now and finally gave in to seek help. Basically, I'm trying to setup a regular expression for a decimal. Where there's 1 to 7 integers in front of the decimal point, and 1 to 2 after the decimal point. This is what … | |
Hi there. I'm having a small issue with including various files into some of my main files. This issue started when I decided to organize my directory structure. My old structure: [code]/{root} [application] [css] [FF] [images] [install] [js] [validation] So in this structure, FF (Firefox) is where the main application … | |
This issue has me absolutely stumped. I have a drop-box on my site that contains 26 options (each options being a letter of the alphabet). This drop-box is being used to sort a database full of records by the records that correspond with the selected letter chosen. The "onchange" event … | |
Hi all, I hope I posted this in the right section. Anyhow, I'm having an issue trying to created a specific HTML table layout. To help explain, here's a quick "sketch" of what I'm trying to get out of the table: [code] +-----+-----+-----+ | | | | <- header cells … | |
Hi everyone, I made a chunk of code where I wanted to perform a "for" loop within a concatenated string. This is what I came up with: [CODE]$message = "The Top 5 Employees of the month are:" . for ($ctr = 0; $ctr < 5; $ctr++) { $num = $ctr … | |
Not sure the title I gave this was appropriate, but I will try to describe my problem as best as possible. Basically, I'm trying to find the correct url reference for the mkdir() function. Let me type up a FTP Structure diagram to help: [code]{ROOT} -inventory -FF -<I am here>[/code] … |
The End.