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 dencom 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
  • Content: Threads
  • 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

    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
  3. 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"...
  4. 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
  5. 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
  6. jebo100

    JavaScript CHM

    hi all, where can i find a downloadable JS chm file? thanks! JEBO 4saledavao
  7. 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
  8. 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...
  9. jebo100

    little help on window.open

    hi all, i have a button which opens a new window with a new defined size using window.open how do i make this new window always on top? or make the window behind it something like inactive that will not response to mouse click until i close this new window. i have been trying to use modal=yes...
  10. jebo100

    visitors browser cookie

    a simple problem with cookies which i can not find in my manual. :) how can i tell if visitors browser is accepting cookies or not from within php? thanks!!!
  11. jebo100

    get IP

    is it possible to get the ip address of visitors from within PHP?
  12. jebo100

    icon on &lt;title&gt;&lt;/title&gt;

    how can i put an icon on the title tag?
  13. jebo100

    uploading tables from wamp

    hello everyone, i have been working on a test project in wamp. and now i am trying to run it online. i already uploaded all the html and php files and its now up and running except the databases. my question is, how do i upload my mysql databases or tables? on what directory should i put the...
  14. jebo100

    uploading database

    hello everyone, i have been working on a test project in wamp. and now i am trying to run it online. i already uploaded all the html and php files and its now up and running except the databases. my question is, how do i upload my mysql databases? on what directory should i put the mysql...
  15. jebo100

    form with target=&quot;_blank&quot;

    seasons greetings!!! i dont know if i am in the right group to ask for this help and im new to html. my question is, i have a form with a target="_blank". all i want is to open that new window on my desired window size. lets say, i wanted that window to open with a size of 640x480px can...
  16. jebo100

    save images on a table field

    i am a foxpro user, and i have been using a general field on my tables to put pictures in it. is their a similar type of field in mysql table?
  17. jebo100

    about PHP mailer

    i have made a simple message form in my page which will be mailed back into my email address from a visitor. a line goes like this to send the mail: mail('mymail@mydomain.com', 'my_subject','my_message'); all goes well and i recieved the mails in my email address except for the senders name...
  18. jebo100

    a little help about REDIRECTING for my first php project.

    hello everyone, i have a form: <form name="form1" method="POST" action="append2dbase.php"> . . <input name="formbutton1" type="submit" when submitted, it processes the "append2dbase.php" which look like this: . . "mysql_query(insert into dbase values(...,....,....)" it runs ok. all i want is...
  19. jebo100

    about mysql date format.

    i have created a table with "date" as one of the field. i have noticed that "Y/M/D" is the default format for date fields. how do i change the tables date format into "M/D/Y" ?
  20. jebo100

    general fied &quot;BMP and JPEG images&quot;

    i am creating an employee dbf with a general field (field name:'idpic')and Appended some images from files. "append general idpic from x:\images\picture001.jpg" but when iput the general field in my form. [problem?] it wont show the image i appended, instead it only shows the file name...

Part and Inventory Search

Back
Top