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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jebo100
  • Order by date
  1. jebo100

    php and flash

    hello, i am a bit new to flash, just need some tips regarding passing variables. i have a script like this: <?PHP $x=1; ?> <a href="someurl.hmtl?var1=<?PHP echo $x ?>"> click here </a> how can i do this in flash? i tried on my flash button action script: on (press)...
  2. jebo100

    ALT=&quot;&quot; problem in IE

    thanks a lot Vragabond!!! huh that was easy.! thanks again!! JEBO 4saledavao
  3. jebo100

    ALT=&quot;&quot; problem in IE

    hi all, new to html. i have an image tag : <img src="images/picture.jpg" alt="myimage"/ > this go well in firefox. in explorer, the alt value pops up whenever i point the mouse on the image. is there a work around to get rid of the pop up in IE? thanks! JEBO 4saledavao
  4. jebo100

    need tip changing value of form input type=&quot;file&quot;

    Thanks a lot guys!!! JEBO 4saledavao
  5. jebo100

    need tip changing value of form input type=&quot;file&quot;

    hi, need a tip. i wanted to put in a value for my input from an onclick event. example: <script type="text/javascript"> function change_value(frm){ frm.elements['file_up'].value="test.jpg" } </script> <form action="trial.php" method="post" enctype="multipart/form-data"...
  6. jebo100

    save page

    thanks ... JEBO 4saledavao
  7. jebo100

    save page

    i have tried "execCommand". but i needed it to work with other browsers too. thanks a lot for your reply... JEBO 4saledavao
  8. jebo100

    save page

    <a href="" onclick="Javascript: window.print()">Print this page</a> the above prints the current page. is there a way to save the current page to my local hard drive? ex: <a href="" onclick="Javascript: window.Save????()">Save this page</a> thanks.... JEBO 4saledavao
  9. jebo100

    click on back, forwad and reload button

    i am new to javascript and i have this manual titled "Javascript Programer's Reference" by Cliff Wooton. i was just wandering if there really is an "onBack ,onForward and onRefresh" event handlers as written in this manual. the manual says -"trigers when The user has clicked on the [FORWARD]...
  10. jebo100

    click on back, forwad and reload button

    is there an event handler or listener when clicking the browsers back, forwad and reload buttons? JEBO 4saledavao
  11. jebo100

    JavaScript CHM

    hi all, where can i find a downloadable JS chm file? thanks! JEBO 4saledavao
  12. jebo100

    Javascript variable to PHP

    WOW!!! that was a very good tutorial. :) now i understand why. Thank you very much for your patience in guiding me thru these. i really appreciate it. Thanks again "vacunita & jpadie" and to all the people here. JEBO 4saledavao
  13. jebo100

    Javascript variable to PHP

    first, i'd like to thank jpadie for the code, and vacunita for enlightening me about js and php. please correct me if my assumptions are wrong.... i am still a bit lost here:), what i really wanted to understand for now from the code below is, when i echo $php_var, it will return the js...
  14. jebo100

    Javascript variable to PHP

    AGREE with you guys, i was assuming that i could use the $php_var for my query because if i echo $php_var, it returns the string i inputed from the js prompt. but when i tested it in actual query, it didn't. :( i dont really understand what happened. echoing $php_var returns the value from js...
  15. jebo100

    Javascript variable to PHP

    thanks for the comment tsuji, i am making an admin page which will allow admin users to maintain the contents of our web site. i used the javascript "prompt()" as the log in form. now i have to pass the javascript variable to php variable so i can use it for my query. <?php...
  16. jebo100

    Javascript variable to PHP

    thanks for the tips jpadie, with almost 2 hours of tinkering, i came up with these code and it worked for my needs. <script>; var js_var=prompt("enter usercode"); var js_var2=confirm("click ok to continue"); </script> <?php $php_var="<script>document.write(js_var)</script>"...
  17. jebo100

    Javascript variable to PHP

    i don't know if this is the right forum for my question. i have a simple prompt javascript like this; <script>var js_var=prompt('enter your name')</script> how do i transfer the variable "js_var" to PHP variable? ex: $myphpvar = js_var thanks! JEBO 4saledavao
  18. jebo100

    save a resized image to file

    thanks jpadie!!! i mislooked the protion of my manual saying this! :) "bool imagejpeg ( resource image [, string filename [, int quality]] )" thanks a lot!
  19. jebo100

    save a resized image to file

    i have followed this example from my manual and it worked well. it displayed the imagejpeg($thumb) nicely. now i wanted to save this new resized image to a file in my images directory, what command or procedure should i do? <?php $filename = 'test.jpg'; $percent = 0.5; header('Content-type...
  20. jebo100

    little help on window.open

    thanks guys! im going to try tweaking my project using these tips

Part and Inventory Search

Back
Top