Jump to content

Simple Q


krash11554

Recommended Posts

I think you want PHP, not Javascript.  You're trying to set it based on a variable during the page load, which Javascript can't do.  You could change it after the page loads, but that's completely pointless.  You can just set it correctly the first time.

 

<?php

// Wherever you set it
$id = "interior";

?>

<input type="text" id="<?php echo $id; ?>" />

 

Remember you can only use an id once, so don't use this for multiple elements.  For that you'll want to use a class.

Link to comment
https://forums.phpfreaks.com/topic/267549-simple-q/#findComment-1372763
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.