URL Updating

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
Sank.Senathirajah
Forum Newbie
Posts: 1
Joined: Sun Apr 10, 2011 6:28 pm

URL Updating

Post by Sank.Senathirajah »

Hi

I have a select list on my form as the following

<form name="source_form">
<select id="sel_source_zero" name="sel_source_zero">
<?php
$sources = _ajax_get_news_sources();
foreach ($sources as $key => $value) {
print ("<option value=\"$key\">$value</option>\n");
}
?>
</select>
<input type="submit" value="Submit" />
</form>

When the user selects a value from the list, I want to take that value and pass it into a PHP function and return a list of IDs. Once I have the source value and the IDs, I want to update my URL with those values. My entire code is as follows

<?php
$source_var = $_GET['sel_source_zero'];
$action_zero = "/news/date/"._ajax_condition_ids_final_unique_plus_seperated($source_var)."/$source_var";
?>

<script type="text/javascript">
$("#sel_source_zero").change(function (){
$.ajax()
});
</script>

<form name="source_form" method="get">
<select id="sel_source_zero" name="sel_source_zero">
<?php
$sources = _ajax_get_news_sources();
foreach ($sources as $key => $value) {
print ("<option value=\"$key\">$value</option>\n");
}
?>
</select>
<input type="submit" value="Submit" />
</form>

I have approached this problem by first trying to store the selected value ($("sel_source_zero").value()) into a PHP variable using AJAX. This is where I got stuck. I am trying to use $.ajax() function from jQuery appended to Drupal, but I'm not sure how to approach this. If I can some how store the JavaScript variable into PHP variable then I will be able to use my new converted to PHP source variable and pass that into my function to get the list of IDs and then update my URL. But I'm not even sure if this is the right approach. If anyone can point me in the right direction to how I can update my URL with the selected value and returned PHP values returned from a function that uses the selected value as it's parameter, I would greatly appreciate it.
spencuier
Forum Newbie
Posts: 1
Joined: Mon Apr 18, 2011 7:37 am

Re: URL Updating

Post by spencuier »

yeah this is important information for me,nice topic.
crienshauw
Forum Newbie
Posts: 1
Joined: Wed Apr 20, 2011 7:03 am

Re: URL Updating

Post by crienshauw »

I have changed my own webpage's address several times over the course of the past 10 years, but old links still appear in several search engines. I need to know how to update them in search engines.
Paint Zoom
eivind
Forum Commoner
Posts: 28
Joined: Tue Apr 19, 2011 7:57 am

Re: URL Updating

Post by eivind »

crienshauw wrote:I need to know how to update them in search engines.
You need to do 301 redirects: http://tinyurl.com/3besjzd
zoe1adela
Forum Newbie
Posts: 3
Joined: Sun Mar 20, 2011 9:55 pm

Re: URL Updating

Post by zoe1adela »

301 links mean redirect to ,you should change your links simple.our website also happen this, i have solve it as this. :) wish you!
Bogardussmith
Forum Newbie
Posts: 1
Joined: Tue Apr 26, 2011 3:40 am

Re: URL Updating

Post by Bogardussmith »

How to update the URL Link?
Post Reply