Thanks a lot Beverleyh. I missed that. Worked great.
Type: Posts; User: itivae; Keyword(s):
Thanks a lot Beverleyh. I missed that. Worked great.
Hello. I am using the CSS gradient effect on the top menu of my pages. I understand this isnt supported for IE 9. The thing that is confusing is that I have a hover effect using the gradient and that...
Thanks a lot jscheuer1 you hit the nail on the head. Is there any reason that this would have started all of a sudden? It worked great for nearly a year. Then all of a sudden it stopped....
Looking at the Internet a bit this seems to most commonly be related to a Javascript clash. I am using lightbox on this page, also I think the previous developer has some javascript in it as well....
Hi
I am not sure why the top left add to email list input stopped taking text all of a sudden. Nothing changed that I can tell. Anyone know a fix for inputs not taking text.
The example is...
I used this
$duplicateResult=$mysqli->query("SELECT `player_name`,`player_id`,`guid` FROM `player_data` WHERE `player_name`='$player_name' OR `player_id`='$player_id' OR `guid`='$guid'");...
So I am making progress slowly but surely (in a great part due to the advice received here, so thanks for that). I currently have some error checking working and the script is INSERT ing the data...
If I understand correctly you are looking for the order of the cascade? If so this might help (the part on "6.4.3 Calculating a selector's specificity" was useful to me):
...
This is what I get
$query = "SELECT * FROM player_bans WHERE banned_guid = '$guid'";
echo '1'; //here echos 1 once
if ($result = $mysqli->query($query)){echo '1'; //here echos 1 once...
Sorry my mistake. Still blank with this code.
if ($result = $mysqli->query($query)){
while ($obj = $result->fetch_object()) {
echo '1';
printf ('<div class="bans">'."%s",...
the result for this code:
else {
echo "1";
$query = "INSERT INTO player_data (player_name, player_id, guid)
VALUES ('$player_name', '$player_id', '$guid')";
$result =...
I still get a blank screen with this added in. i.e.
else {
$query = "INSERT INTO player_data (player_name, player_id, guid)
VALUES ('$player_name', '$player_id', '$guid')";
print...
when I run that as a new .php file I get the following error:
Parse error: syntax error, unexpected ';' in /home/userdir/foobar/errortest.php on line 1
But other parse errors where returned as a message....does that mean that some do and some dont? I have spoken with my host and it looks like error_reporting is fully enabled..... I am still getting...
Thanks for the suggestions. I use several text editors that all have syntax highlighting. I have made some headway on this code but am running into a problem when I try to INSERT data into the...
Alright I have been staring at this for more than an hour.... I have tried to rearrange the code. I am really stumped. Here is my current code....Feel free to hint at the answers...
<?php...
You could try to define a min-height of a px number. As I understand it height does not work well with percentages. I may be wrong but this is how I have always accomplished this.
i.e.
...
Pardon my ignorance but could you please be a little more specific?
So I have played with this a little more. Its seems to run but it is not accomplishing all of its tasks. It skips the first if statment and always evaluates to true making the "else" statment always...
Oh *&%(*%(.....There is a missing " on line 41. Thanks for the help. I am going to leave this thread open for a minute in case I have another problem.
Hi Beverleyh,
Thanks for the information. I have removed a great deal of the code (in an attempt to get at least part of it working correctly so that I have something to work off of), I am still...
Hi i am writing a script to check a guid against a column in a database. Here is what I have so far but I keep getting a "Parse error: syntax error, unexpected T_STRING in...
Hi James,
Basically there are several hundred indexed items. Since the beginning of the url
http://www.mytravelsite.com/states/cities/thiscity/
needs to be equated to
So to make it
http://www.inchicago.com/dir0-6/somepage.shtml
Would I do this?
$url = "http://www.mytravelsite.com/states/cities/thiscity/";
$new_url =...
I am having a bit of trouble with this. I am a beginner with regular expressions, so please bear with me. What I am trying to do is match
http://www.mytravelsite.com/states/cities/thiscity/
to...