Jump to content

text buttons


squiblo

Recommended Posts

i have this working code...

<form action="" method="POST">
   <?php
    if (!isset($_POST['all'])){
    echo "<input type='submit' name='all' value='View all categories'>";
    }
else
{
echo "<input type='submit' name='popular' value='View popular categories'>";
}
    ?>


<?php
    if (!isset($_POST['all'])){
    echo "<h2>Popular Categories</h2>";
	}
	else 
	{
	echo  "<h2>All Categories</h2>";
	}
	?>

 

but how can i change this so i do not have to use buttons, but i can use ordinary text

Link to comment
https://forums.phpfreaks.com/topic/171342-text-buttons/
Share on other sites

I did that using js, try this code:

 

 

script language="JavaScript" type="text/javascript">
<!--
function getsupport ( selectedtype )
{
  document.YOUR_FORM_NAME.supporttype.value = selectedtype ;
  document. YOUR_FORM_NAME.submit() ;
}
-->
  </script>
<a href="javascript:getsupport('pass')">View popular categories</a>
<input type="hidden" name="supporttype"/>

 

Link to comment
https://forums.phpfreaks.com/topic/171342-text-buttons/#findComment-903611
Share on other sites

i have just decided to use buttons, but now i have another problem, if the form action is linked to the same page like "<form action='EXAMPLE'..." and a button is click within the form, how can i stop the page from scrolling back to the top then the button has been clicked?

Link to comment
https://forums.phpfreaks.com/topic/171342-text-buttons/#findComment-903677
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.