Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Shanksta

  1. Shanksta

    CSS - Can I do this?

    How would I get that class in JavaScript? Div is GetElementById... and class?
  2. Shanksta

    CSS - Can I do this?

    I am using JS to hide and display divs. In order to set the initial stage to be hidden I am using CSS to do display: none... Now what I want to do is rather than making an entry for each item is simply make one css entry for #hidden and set that display to none, from there I want to have divs...
  3. Shanksta

    Diagnostics For MAC

    A link: http://www.micromat.com/tt_pro_4/tt_pro_4.html
  4. Shanksta

    PowerMac G4 Apple Internal Modem

    I would agree with rlibsch... The only thinhg that changed from yoru house to hers was the phone line, probably where the problem is.
  5. Shanksta

    PHP and echo

    For anyone who had a similar problem, this is how I solved it: http://www.19.5degs.com/element/767.php#parsing_php // turn on output buffering ob_start(); // this parses the php code in out $php variable; this is the heart of our templating logic eval(" ?>" . $body . "<? "); //...
  6. Shanksta

    PHP and echo

    Yep. Just trying to give the context.
  7. Shanksta

    PHP and echo

    Can anyone still help with this? Ill try to get as specific as possible... For every page on my site I use a MySQL DB to retrieve the page contents. I have a field for title, heading, and body. I use the echo funciton in php to show the text in each one of the fields. In one of my body fields...
  8. Shanksta

    PHP and echo

    So how can I do it?
  9. Shanksta

    PHP or Javascript question?!?

    onchange, not on select, sorry... google it
  10. Shanksta

    New to PHP but how do you set up a link in a variable?

    in html you have to put quotes about the link... try... $enterLink = "<html><a href\"=http://www.markcgoodman.com\"></a></html>";
  11. Shanksta

    PHP and echo

    I have the following code inside the $body var - what is currently being echoed: (text... yada yada) <br> require("test.php"); <br> (more text... yada yada yada) This is the var that I am using eval on
  12. Shanksta

    PHP and echo

    All it is is a simple echo $body; inserted into a table cell. $body refers to the mySQL data I fetch that is basically a text cell. In there I have the require that needs to exectute. Its litterally just require("test.php"); that I put there.
  13. Shanksta

    Setting up database with login

    google: javascript form validation
  14. Shanksta

    PHP or Javascript question?!?

    You could use javascrip to do an on select command, use that data to generate the other lists you want. I guess you could go about this by building a switch for all the case for the 2nd drop down and have different outputs based on different queries depending on what value was submitted before.
  15. Shanksta

    PHP and echo

    tried eval, but doesnt seem to work... the body text is $db['body']; and inside that is require("test.php"); can you give me an example of what I would code to make the php execute? thanks for your quick replys

Part and Inventory Search

Back
Top