Forum: PHP Aug 10th, 2009 |
| Replies: 0 Views: 172 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:
Attempt #1
1. Downloaded... |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2009 |
| Replies: 1 Views: 500 It figures that I figure it out AFTER I ask for help :P |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2009 |
| Replies: 1 Views: 500 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,... |
Forum: JavaScript / DHTML / AJAX Jul 24th, 2009 |
| Replies: 16 Views: 994 Looks very useful, thanks :) |
Forum: JavaScript / DHTML / AJAX Jul 24th, 2009 |
| Replies: 16 Views: 994 OMG! I FIGURED IT OUT!
After 20+ hours of trying to figure what the hell was going on. It turned out non-working table had the CSS property of "display" set to "block". Apparently this caused all... |
Forum: JavaScript / DHTML / AJAX Jul 24th, 2009 |
| Replies: 16 Views: 994 Well it looks like your code did the trick :)
It's still odd to think about though, because I downloaded Chrome and Safari and both of them worked perfectly, however the table was oddly shaped.
... |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009 |
| Replies: 16 Views: 994 Not a problem. The fact you're trying to help is highly appreciated.
What is odd, though. Is when I enabled table borders for both tables, this slightly changes the layout of the table to... |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009 |
| Replies: 16 Views: 994 Sounds good. I'm currently sifting through the page code right now to see if there's something causing a problem |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009 |
| Replies: 16 Views: 994 If it helps at all, these are the coordinates I get when I click the icon in each form.
Form 1: x=761 y=470 (Works)
Form 2: x=704 y=471 (Doesn't work)
Also, here's an added picture to show the... |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009 |
| Replies: 16 Views: 994 Looks like the code you provided has the same effect. Thanks for the attempt though.
Also, I forgot to mention, the tabs shown in the pictures are AJAX tabs. |
Forum: PHP Jul 23rd, 2009 |
| Replies: 20 Views: 974 Bah, nothing worked. I just decided to do:
$str = strval($value);
$len = strlen($str);
$isNeg = strchr($str,"-");
$isMax = strpos($str,"99");
$isExceed = false;
if ($isNeg != "") {
... |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009 |
| Replies: 16 Views: 994 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... |
Forum: PHP Jul 23rd, 2009 |
| Replies: 20 Views: 974 So strangely enough, the gmp_abs functions started to work...
However, I'm not sure they're working the way they should be. I've done some reading in all sorts of GMP functions and it looks as if... |
Forum: PHP Jul 22nd, 2009 |
| Replies: 20 Views: 974 Alright, here's what I did:
1. Uninstalled WAMP
2. Deleted WAMP folder
3. Installed XAMPP (Was I supposed to install Apache, MySQL, FireZilla as services?)
4. Setup phpMyAdmin
5. Moved site... |
Forum: PHP Jul 22nd, 2009 |
| Replies: 20 Views: 974 Alright, I'll give that a shot and let you know how it goes |
Forum: PHP Jul 22nd, 2009 |
| Replies: 20 Views: 974 Yea I've been googling like a mad-man with no luck unfortunately. I did try out XAMPP though, there were a few uncertainties with it though.
Such as:
-Where is the root folder?
-I had trouble... |
Forum: PHP Jul 22nd, 2009 |
| Replies: 20 Views: 974 Ok I think I'm getting somewhere.
However, I need to get past another error. When I open WAMP, this error pop-up reads:
PHP Startup: gmp: Unable to initialize module
Module compiled with module... |
Forum: PHP Jul 22nd, 2009 |
| Replies: 20 Views: 974 Yea for sure.
It's still not working though. This is certainly frustrating. I'm gonna call it a day and come back to it tomorrow.
Thanks again for your help thus far |
Forum: PHP Jul 22nd, 2009 |
| Replies: 20 Views: 974 Yea I downloaded the .dll file and put it in the proper folder and php_gmp has been checked since it's been installed.
I'm sure I'd need to refresh the server, which as far as I know, would be... |
Forum: PHP Jul 21st, 2009 |
| Replies: 20 Views: 974 So, I installed WAMP and transfered my files onto my localhost server vesus the one provided by godaddy. Adjusting from PHP 4.3.11 to PHP 5.3.0 has been a bit stressful but will be worth it in the... |
Forum: PHP Jul 21st, 2009 |
| Replies: 20 Views: 974 Hmm, I can't seem to find my php.ini file.
I created a file that consisted of:
<?php phpinfo() ?>
It said the file path is: /web/conf/php.ini
When I tried:... |
Forum: PHP Jul 21st, 2009 |
| Replies: 20 Views: 974 Thanks for your reply.
I tried the GMP method by doing the following:
if ($data == "bigint" && ($value < gmp_abs("-9223372036854775808") || $value > gmp_abs("9223372036854775807"))) {
$error... |
Forum: PHP Jul 20th, 2009 |
| Replies: 20 Views: 974 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... |
Forum: JavaScript / DHTML / AJAX Jul 20th, 2009 |
| Replies: 2 Views: 318 Definitely some good topics to read up on.
Thanks for your answer! |
Forum: JavaScript / DHTML / AJAX Jul 20th, 2009 |
| Replies: 2 Views: 318 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... |
Forum: PHP Jul 11th, 2009 |
| Replies: 2 Views: 288 That did the trick!
Thanks for the answer as well as the explanation. Definitely good to know! :) |
Forum: PHP Jul 11th, 2009 |
| Replies: 2 Views: 288 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... |
Forum: PHP Jun 24th, 2009 |
| Replies: 1 Views: 247 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:
/{root}
... |
Forum: PHP Jun 21st, 2009 |
| Replies: 6 Views: 488 LOL!
Okay, I fudged up.
The one IMPORTANT part I left out was the output from the AJAX was going into an iFrame. In the "changeSort()" I mentioned above dynamically set the URL of the iFrame,... |
Forum: PHP Jun 21st, 2009 |
| Replies: 6 Views: 488 Hmm, the barebone diagnostics sounds like a good idea. I will start with the PHP file as you instructed. I'll keep you up-to-date. :) |
Forum: PHP Jun 21st, 2009 |
| Replies: 6 Views: 488 Thanks for the reply!
I'm including two files in the php file. However, I've tried putting the $_GET's before and after the files are including and still nothing. Also I have tried the $_REQUEST... |
Forum: PHP Jun 21st, 2009 |
| Replies: 6 Views: 488 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... |
Forum: HTML and CSS Jun 19th, 2009 |
| Replies: 3 Views: 389 Bah! turns out the method I was trying to achieve was inefficient and bulky. I just ended up splitting up the tables and using an iframes. |
Forum: HTML and CSS Jun 19th, 2009 |
| Replies: 3 Views: 389 Hmm, not quite but close.
Here's a generic piece of code for the table I tried sketching above:
<table>
<tr>
<th>Header #1</th>
<th>Header #2</th>
<th>Header... |
Forum: HTML and CSS Jun 18th, 2009 |
| Replies: 3 Views: 389 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... |
Forum: Java Nov 19th, 2008 |
| Replies: 8 Views: 9,354 Hey that worked!
Thanks for all the help :) |
Forum: Java Nov 19th, 2008 |
| Replies: 8 Views: 9,354 Alright, I'll see what I can do about being more specific, I'm finding it a bit hard to explain.
Hmm, well I had to make a UML Class Diagram where each class in the diagram had Attributes in it,... |
Forum: Java Nov 19th, 2008 |
| Replies: 8 Views: 9,354 Sorry, I left out some important information.
I have classes set up and the data is being put into classes in the following format:
array[index].setVariable(variable);
So I tried what you... |
Forum: Java Nov 19th, 2008 |
| Replies: 8 Views: 9,354 Makes sense.
Well, to help with the situation, I'm trying to get text from a text field.
Works Fine:
String strVariable = jTextField1.getText();
Error:
Char charVariable =... |
Forum: Java Nov 19th, 2008 |
| Replies: 8 Views: 9,354 Hi,
Basically, I'm trying to parse a string into a char for submitting into an array, this is what I have so far:
String strVariable;
Char charVariable;
strVariable = "Some String";... |