PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #31  
Old July 1st, 2009, 03:58 PM
simshaun's Avatar
simshaun simshaun is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Location: North Carolina
Posts: 1,722 simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 19652 Folding Title: Novice Folder
Time spent in forums: 2 Weeks 4 Days 21 h 28 m
Reputation Power: 1497
This ought to work.
PHP Code:
<script type="text/javascript">
/**
* Declaration of updateBannerAd function.
*/
function updateBannerAd(county) {
    $.
ajax({
        
type'post',
        
url'yourbannerloader.php',
        
data'county=' county,
        
success: function(msg) {
            $(
'#bannerDiv').html(msg);
        }
    });
}

$(function(){
    $(
'#tree').treeview({
        
collapsedtrue,
        
animated'medium',
        
control'#sidetreecontrol',
        
prerenderedtrue,
        
persist'location'
    
});

    var 
$hitareas = $('.hitarea');
    
$hitareas.click(function() {
        var 
$this = $(this);
        var 
$anchor $this.find('a:first');
        var 
county $anchor.attr('rel');

        
// Required since some hitarea anchors are not for counties. (ie: States)
        
if (county != '') {
            
// Only call updateBannerAd when the user expands the node.
            // The only way I could think of to test if the node was expanding was
            //    to look at the ul's height property and see if it was 1px.
            // I couldn't just use an if is(:hidden) condition on the ul because treeview
            //    already unhides the ul and is animating its height property by
            //    the time this function is executed.
            
if ($this.parent().find('ul:first').css('height') == '1px') {
                
updateBannerAd(county); // Pass the county to the updateBannerAd function.
            
}
        }
    });
});
</script> 

Last edited by simshaun : July 1st, 2009 at 04:09 PM.

Reply With Quote
  #32  
Old July 1st, 2009, 04:04 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
It says Error on page at the bottom of the browser... one of the javascript error messages...

Reply With Quote
  #33  
Old July 1st, 2009, 04:07 PM
simshaun's Avatar
simshaun simshaun is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Location: North Carolina
Posts: 1,722 simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 19652 Folding Title: Novice Folder
Time spent in forums: 2 Weeks 4 Days 21 h 28 m
Reputation Power: 1497
What is the error?

Try re-copying and pasting the code and ensure you didnt cause the error somehow.
I'm testing it on my pc and it works fine without errors.

Reply With Quote
  #34  
Old July 1st, 2009, 04:11 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
Quote:
Originally Posted by simshaun
What is the error?

Try re-copying and pasting the code and ensure you didnt cause the error somehow.
I'm testing it on my pc and it works fine without errors.


Ok.. so maybe I did cause it.. not sure what I did though..

Anyways, no error this time, but when I click the folder tree, nothing pops up...

Reply With Quote
  #35  
Old July 1st, 2009, 04:13 PM
simshaun's Avatar
simshaun simshaun is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Location: North Carolina
Posts: 1,722 simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 19652 Folding Title: Novice Folder
Time spent in forums: 2 Weeks 4 Days 21 h 28 m
Reputation Power: 1497
I assume you changed the url parameter in
PHP Code:
$.ajax({
        
type'post',
        
url'yourbannerloader.php',
        
data'county=' county,
        
success: function(msg) {
            $(
'#bannerDiv').html(msg);
        }
    }); 
and that the php script does indeed return a banner based on the county submitted?

Also, the JavaScript is designed to only operate on the anchors which have a value in the rel attribute. The only anchors I see that match that condition are the first level of counties under each state.

Finally, you need to be testing this through localhost or a server on the web. (I assume you are, but just making sure.)

Last edited by simshaun : July 1st, 2009 at 04:16 PM.

Reply With Quote
  #36  
Old July 1st, 2009, 04:18 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
Quote:
Originally Posted by simshaun
I assume you changed the url parameter in
PHP Code:
$.ajax({
        
type'post',
        
url'yourbannerloader.php',
        
data'county=' county,
        
success: function(msg) {
            $(
'#bannerDiv').html(msg);
        }
    }); 
and that the php script does indeed return a banner based on the county submitted?


I didnt change the url parameter. To make things easier in following along, I've left it as initially created.. so my php page is called yourbannerloader.php right now.

Ok... so nothing was being displayed, however, I added the $county=$_POST['county'];
line to the yourbannerloader.php

Yay.... Now it does display the counties. However, for the states and cities, it displays undefined...

Reply With Quote
  #37  
Old July 1st, 2009, 04:19 PM
Onslaught's Avatar
Onslaught Onslaught is offline
/(bb|[^b]{2})/
Dev Shed God (5000 - 5499 posts)
 
Join Date: Nov 2001
Location: Somewhere in the great unknown
Posts: 5,162 Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level) 
Time spent in forums: 5 Days 22 h 34 m 49 sec
Reputation Power: 767
are you using firefox to troubleshoot this? The reason I ask, you can get very detailed information with firefox and the firebug addon, even step through the javascript while it is executing.

Reply With Quote
  #38  
Old July 1st, 2009, 04:20 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
Quote:
Originally Posted by Onslaught
are you using firefox to troubleshoot this? The reason I ask, you can get very detailed information with firefox and the firebug addon, even step through the javascript while it is executing.


I use both FF and IE... Mainly been using IE though..

Reply With Quote
  #39  
Old July 1st, 2009, 04:21 PM
simshaun's Avatar
simshaun simshaun is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Location: North Carolina
Posts: 1,722 simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 19652 Folding Title: Novice Folder
Time spent in forums: 2 Weeks 4 Days 21 h 28 m
Reputation Power: 1497
If you are using my code, you should have nothing that displays undefined for cities and states because those links do not have a rel="" attribute.

Reply With Quote
  #40  
Old July 1st, 2009, 04:35 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
Quote:
Originally Posted by hiker
No... The rel=$county declaration is how I had it yesterday... the alert says undefined...


Ok... Here you can take a look at the site: linky

The middle column will have info regarding the various items... item name, price, etc. I am thinking I can do something similar to what we're doing now for this part... create another div and such to push the info to.

The right column is where the banners will go... If you click on either State or City names, it shows undefined on the right... How hard would it be to push a 2nd value over to a div? Basically, I will need to push multiple info over to the middle column, but may want to push the State info to the banner area.

Thanks.

Reply With Quote
  #41  
Old July 1st, 2009, 04:42 PM
simshaun's Avatar
simshaun simshaun is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Location: North Carolina
Posts: 1,722 simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 19652 Folding Title: Novice Folder
Time spent in forums: 2 Weeks 4 Days 21 h 28 m
Reputation Power: 1497
Hmm thats odd. Try this and see if it helps. (I'm not sure why its throwing undefined. Hopefully the additional check to see if the rel attribute is undefined will help.)
PHP Code:
<script type="text/javascript">
/**
* Declaration of updateBannerAd function.
*/
function updateBannerAd(county) {
    
alert(county);
    $.
ajax({
        
type'post',
        
url'yourbannerloader.php',
        
data'county=' county,
        
success: function(msg) {
            $(
'#bannerDiv').html(msg);
        }
    });
}

$(function(){
    $(
'#tree').treeview({
        
collapsedtrue,
        
animated'medium',
        
control'#sidetreecontrol',
        
prerenderedtrue,
        
persist'location'
    
});

    var 
$hitareas = $('.hitarea');
    
$hitareas.click(function() {
        var 
$this = $(this);
        var 
$anchor $this.find('a:first');
        var 
county $anchor.attr('rel');

        
// Required since some hitarea anchors are not for counties. (ie: States)
        
if (county != '' && county !== undefined) {
            
// Only call updateBannerAd when the user expands the node.
            // The only way I could think of to test if the node was expanding was
            //    to look at the ul's height property and see if it was 1px.
            // I couldn't just use an if is(:hidden) condition on the ul because treeview
            //    already unhides the ul and is animating its height property by
            //    the time this function is executed.
            
if ($this.parent().find('ul:first').css('height') == '1px') {
                
updateBannerAd(county); // Pass the county to the updateBannerAd function.
            
}
        }
    });
});
</script> 

Reply With Quote
  #42  
Old July 1st, 2009, 04:46 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
That one seems to work!

I'm assuming I can take out the alert line, right?

Reply With Quote
  #43  
Old July 1st, 2009, 04:47 PM
Onslaught's Avatar
Onslaught Onslaught is offline
/(bb|[^b]{2})/
Dev Shed God (5000 - 5499 posts)
 
Join Date: Nov 2001
Location: Somewhere in the great unknown
Posts: 5,162 Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level)Onslaught User rank is Major General (70000 - 90000 Reputation Level) 
Time spent in forums: 5 Days 22 h 34 m 49 sec
Reputation Power: 767
Yep, you can take out the alert now.

Reply With Quote
  #44  
Old July 1st, 2009, 04:50 PM
simshaun's Avatar
simshaun simshaun is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Mar 2008
Location: North Carolina
Posts: 1,722 simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)simshaun User rank is General 8th Grade (Above 100000 Reputation Level)  Folding Points: 19652 Folding Title: Novice Folder
Time spent in forums: 2 Weeks 4 Days 21 h 28 m
Reputation Power: 1497
If you are done testing, yea.

Responding to your previous post, you could do what you were talking about with the middle column and allowing States and Cities to have banners, but it would take some more work and modifications (naturally). Which do you want to do first?

Reply With Quote
  #45  
Old July 1st, 2009, 04:53 PM
hiker's Avatar
hiker hiker is offline
They're coming to take me away
Click here for more information
 
Join Date: Jan 2005
Location: Florida
Posts: 4,169 hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)hiker User rank is General 34th Grade (Above 100000 Reputation Level)  Folding Points: 33832 Folding Title: Starter FolderFolding Points: 33832 Folding Title: Starter Folder
Time spent in forums: 2 Months 2 Weeks 21 h 10 m 14 sec
Reputation Power: 3245
Quote:
Originally Posted by Onslaught
Yep, you can take out the alert now.


Sweet.. you guys rock!

Now... um... if it's not to much trouble, how would I pass through a 2nd variable? For the content area, I think there will be anywhere from 7-15 items that need to get passed via post so that I can display certain information.

Also, he may want to pass the State info as well... I'm about to call him to talk him out of that, but would still be good to know...

Thanks again

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > PHP-General - $_GET using an iframe


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek