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 Chriss Miller 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: amir4oracle
  • Content: Threads
  • Order by date
  1. amir4oracle

    When we press the back button the form values are lost

    How can we retain the values for textarea, radio buttons, check boxes, select option drop down etc in a form? Because when we press the back/forward buttons the values are lost. Your help is highly appreciated. Thanks in advance. Best regards, Amir
  2. amir4oracle

    How can we find width and height of an image file being uploaded

    How can we find width and height of an image file being uploaded, I am using the following code: <?php require_once ('conn_db.php'); if (isset ($_POST['submit'])) { for ($i=0; $i <= 3; $i++) if ($_FILES['photo']['name'][$i] != '') if(move_uploaded_file($_FILES['photo']['tmp_name'][$i]...
  3. amir4oracle

    i need to display two html tables vertically next to each other

    i need to display two html tables vertically like this: --------------- | table 1 | --------------- --------------- | table 2 | --------------- but in the browser they are showing horizontally like this: -------------- -------------- | table 1 | | table 2 | --------------...
  4. amir4oracle

    How to pass value of $x (embedded) in html form section to php section

    How can we pass value of $x php variable embedded in html form section to php section (or form process section)? The simple version of the code (register.php) is as follows : <?php //php section if (isset ($_POST['submit'])) { $emal_addr = $_POST['emal_addr']; echo "$emal_addr"...
  5. amir4oracle

    The php code does not display jpegs in sequence

    The code below is written to display jpegs on abc.com of the type: is.100.jpg to is.110.jpg <?php for ($i=100; $i <= 110; $i++) echo "<img src=\"http://www.abc.com/is.\"$i\".jpg>"; ?> but it only shows the red x instead of the image. What can be done to fix this problem? Your help is highly...
  6. amir4oracle

    Can we run an application automatically and silently

    Hi All, Is there a way of running a desktop application (.exe) file on the system startup without showing up on the screen and task bar and system tray. Your help is highly appreciated. Best regards, Amir
  7. amir4oracle

    how to narrow down values in a drop down based on previos drop down

    Using the select element in html/php/js how can we narrow down the values another drop down. For eg if we have to select a country in the parent drop down the values in the child drop down should populate automatically lets say state/province. Do we have to resubmit the page or if we can use...
  8. amir4oracle

    How to upload/save image on MySQL DB

    To upload/save image on MySQL DB I created the following table: CREATE TABLE test_pic ( name varchar (30), photo varchar(30) ); and to upload and save an image file in MySQL DB I wrote the following code in addpic.php file: --------------------------------------------------------- <?php...
  9. amir4oracle

    How to access PHP/web page within LAN

    I have two computers with the following attributes: Linux: 210.168.10.3 Windows: 210.168.10.2 Both ping each other just fine. but on Windows in IE when I say: http://210.168.10.3/phpinfo.php it gives: "The page cannot be displayed" error on Linux (210.168.10.3) itself it works both ways...
  10. amir4oracle

    how to display data from db after choosing value from drop down

    hello, i need to know how can i display data from database using drop down. in other words, i have to create a drop down using select-option and depending upon the choosen value i need to display the values in the row using select query. Your help is highly appreciated.
  11. amir4oracle

    if check not working in an included file

    I have a file base.php, which is calling a file compose.php using: include ('compose.php'); compose.php is a form with just two fields, which roughly as follows: --------------------------------------- <?php if (isset ($_POST['submit'])) { // validation checks // and database...
  12. amir4oracle

    A Simple Question about Panels in Fedora 5

    I cant see the place where we minimize different windows, I can see the panels, but the panel for windows is blank, (although there are two panels, one for menus), but the panel for windows remains blank, no matter how many windows are open maybe by mistake i clicked somewhere which made it to...
  13. amir4oracle

    How can we make Bootable CDs for Fedora 5

    Hello, My question is, how can we make Bootable CDs for Fedora 5? I am running Fedora 4 and following exactly the same instructions on fedora.redhat.com to burn the CDs/DVDs for Fedora 5, it burns the CDs but it just does not boot up. What should I do. Your help is appreciated. Thanks, Amir
  14. amir4oracle

    Calling javascript fn from php

    The following code has a javascript function commalrt() instead giving the alert it echos: javascript: commalrt() in the window how can i invoke the javascript fn from php The Code is: <html> <head> <script language="javascript"> function commalrt() { alert ('You forgot to enter...
  15. amir4oracle

    How can I access Oracle DB with PHP web page?

    How can I access Oracle DB with PHP web page? Is there any web link from where I can find a detailed step by step procedure?
  16. amir4oracle

    How to receive values of variables using $_GET and $_POST in the same

    I need your help, in regards to how to receive values of different variables using $_GET and $_POST in the same form. I am actually working on a website, in which there is a small form. The form is getting a value "order_number" from another web page "A" using $_GET method. The same form...
  17. amir4oracle

    How can I unformat a quick formatted partition?

    How can I unformat a quick formatted partition, is there a way on Windows XP and recover the files?
  18. amir4oracle

    Undefined index error/notice in text box ... kindly help me

    The following Code is giving the following Error/notice "Undefined index" in the text box f_name ... kindly help me: ----------------------------------------------------------------------------- CODE: 1 <? 2 3 if (isset ($_POST['submit'])) 4 { 5 $message = NULL; 6 7 if (strlen...
  19. amir4oracle

    Regrading PHP connectivit with Oracle

    How can we link the PHP Web Server with Oracle working as a back-end Database Server? Thanks in Advance. Amir.
  20. amir4oracle

    Questions about DBWR

    Hi, Does data go to the DBWR when the INSERT is issued? or Does it go when any DML or SELECT is issued? Kindly give me a web link where I can read the processes of DBWR and LGWR in detail and understand with the help of visual diagrams. Thanks Amir

Part and Inventory Search

Back
Top