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: *

  1. schoch

    Restricting Access to Page

    I have created a login page with the usual login details from the server behaviour options. On an interior page of the restricted area I have an extra area that I need only to allow users with admin priveledges. However when apply this it does not let anyone in? Why is this happening? Any ideas?
  2. schoch

    Displaying session variable

    I can view the username, but the password cannot be displayed on the page. This is a login form and I want to be able to display the password on one of the interior restricted pages. however it doesn't seem to be registering the variable. The username can be displayed but not the password, why...
  3. schoch

    regester session variables

    I can view the username, but the password cannot be displayed on the page. This is a login form and I want to be able to display the password on one of the interior restricted pages. however it doesn't seem to be registering the variable. <?php // *** Validate request to login to this site...
  4. schoch

    session variables

    thankyou very much, I am a spaz!
  5. schoch

    session variables

    I want to add the username to each page in a restricted login area. I have created a session variable named username. How do I display it. the code is as follows: <?php session_start(); $MM_authorizedUsers = ""; $MM_donotCheckaccess = "true"; // *** Restrict Access To Page: Grant or deny...
  6. schoch

    Adding numbers in cells

    I usually work in php and was told I could not add cells to total automatically. I need help with javascript as I now nothing. I hope this makes sense! I want to tally up the numbers inputted in each cell for the specific column e.g. CODE <input name="md1" type="text" id="md1" size="10" />...
  7. schoch

    Adding Numbers

    I want to tally up the numbers inputted in each cell for the specific column e.g. <input name="md1" type="text" id="md1" size="10" /> and <input name="md2" type="text" id="md1" size="10" /> =<input name="md_total" type="text" id="md_total" size="10" value="<?php $md1=md1; $md2=md2...
  8. schoch

    Creating a loop which increments each form input name

    The for loop doesn't seem to be working? What have I done wrong? <?php do { ?>     <tr> <td>     <input name="day<?php echo $cnt; ?>" value="<?php echo $row_days['day_name']; ?>"> <?php } while ($row_days = mysql_fetch_assoc($days)); ?>         </td> <td> <?php for ($i=0; $i<20...
  9. schoch

    Creating a loop which increments each form input name

    so if I use the array foo. Will they be inserted into the database with separate ids?
  10. schoch

    Insert data into Multiple tables

    Hi I want to insert data into a couple of tables. I can insert into one table but am having trouble inserting into multiple. The code I have is as follows. Do I use an Inner Join? <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") {...
  11. schoch

    Creating a loop which increments each form input name

    Hi, I want to loop a form name. Incrementing it so that each field has the same input name with a number. It just isn't working, I am new to php so really need some help! <?php for ($cnt=1; $cnt<=; $i++) { echo "$cnt"; } ?> <tr> <td> <?php do { ?> <input...
  12. schoch

    NEC Electra Professional Level 1

    I found the answer! Memory block 4-05 must be set to &quot;DP&quot; (not DTMF) for ports 15 and 16 (where the ProMail is connected).
  13. schoch

    NEC Electra Professional Level 1

    Careful with the programming of the Electra Pro Level 1. We have a system that we want to sell now, so I used the manual to find the sequence for &quot;System Data Memory Initialize Operation&quot;. While the system can still be used, the NEC ProMail unit that is connected no longer works. I...

Part and Inventory Search

Back
Top