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 strongm 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: akaballa123
  • Content: Threads
  • Order by date
  1. akaballa123

    php logic with mysql_fetch_array

    Hi I am requesting some variables from a form into a server side script using ajax. I applied some logic into the server side script. However, when I added the logic, my form db does not get updated. Anywyz...my problem seems to be within the serverside php code of things, I have been toiling...
  2. akaballa123

    multiples form within one page

    Hi There, I have two forms in a website. When a user is filling in Form A and finds that a certain value is not found within one of the form select fields, then the user has to add that value through form B. I would like to open a Form B within the page when a user clicks a link to form B...
  3. akaballa123

    onunload event problem

    Hi There, Im working on creating an ajax request that will be called through the onunload event in the body tag. I have set a unique id for my form so that each time the form opens a new id is created. This automatically gets submitted to the database. However, if the user exits the page...
  4. akaballa123

    problem with ajax form update

    Hi There, Im a noob with ajax but really like the conept behind it. Iwanted to implement it into my form submit process. Basically, I want to create a security id each time the form is opened. When the user clicks submit, the for runs a javascript validation to check the form fields. If...
  5. akaballa123

    form editing prior to submit

    Hi, I have a form that directs to a form summary page after being submitted. the summary page inserts the data into the db and also displays the form values. i want add a edit option where the user can edit their form is they entered a wrong value. Basically the user will have two options...
  6. akaballa123

    disable user from going back after submitting form

    hi.. I created a form using php server and javascript client side. Once the user submits the form, if they click the back button then clicks the submit button again, the form gets re submitted. I do not want to do this. I would like to disable ( idea of atleast) the brower's back button so...
  7. akaballa123

    regex expression problem

    Hi, I am a newbie to reg expressions but trying to create one to control what is typed in a form field. If certain characters are found, an alert box pops up a msg when the user clicks submit. I tried my code, but it is not working..im sure there is something wrong with the regex...plz check...
  8. akaballa123

    Object Expected error

    Hi, I am creating a website, that carries both php and javascript code. However, I am having a problem with my javascript code, where I keep getting an object expected error one line 91. I tries to check to see if it is a php or javascript problem and then concluded that it is most likely...
  9. akaballa123

    Start and End Date comparison error

    Hi, I am trying to create a date check scenario to see if my start date greater than my end date: This is the code im using var cStartD = myForm.startDate; var cEndD = myForm.endDate; var startD_array = cStartD.value.split("/"); var endD_array = cEndD.value.split("/")...
  10. akaballa123

    network traffic through cisco 2600 router

    Hi, I was wondering how to check the network traffic ( which internet addresses are being accessed) through a cisco 2600 router come firewall that has NAT ( basic security), second level access list, and CBAC. I dont know the command to check it.
  11. akaballa123

    MAC OS issues

    Hi there, I keep having this issue where my MAC freezes and I cant move my cursor. I have to resort to rebooting the system. I also noticed that the screen shows some streak lines. I intially faced this problem with MAC OS X Tiger. I then upgraded to Leopard 10.5.1. I am still having the...
  12. akaballa123

    connecting a wireless router through a hub

    hi, I curretnly have a network setup where my modem is connected to a router. The router is then connected to hub that provides lan connection in that particular room (a). THis hub is also linked to another hub in room b. hub b provides lan connection to room b. And lastly, there is a link...
  13. akaballa123

    sql table display using php

    Hi, I am trying to create this scenario where I can create a table that display all the trainings that each particular organization provides. I have two mysql tables related to this. I fetched the organization names from the orgtbl and the training names from addtrainingtbl . I want...
  14. akaballa123

    SELECT variable error

    Hi I am trying to create a specifice sql statement and keep on receiving this error: Parse error: syntax error, unexpected T_VARIABLE $orgName = $row['orgName']; $content3 .= '<tr><td align="center">' . $orgName ; $trainingOrg = @mysql_query('SELECT trainingName FROM...
  15. akaballa123

    How to enter into Rommon mode in Cisco 2600

    Hi, I need to change the configuration settings so that the cisco 2600 terminal server (router) does not ask for username and password credentials when a user telnets into the TS. Since I am very new, I do not know how to enter Rommon mode in order to change the password configuration. Can...
  16. akaballa123

    excel report

    hi, I am trying to generate a mysql report in excel. this is what I have currently: Code: <HTML> <HEAD> <TITLE>New Document</TITLE> <?php include("mysqlConnection.php"); function Data(&$str) { $str = preg_replace("/\t/", "\\t", $str); $str = preg_replace("/\n/", "\\n", $str)...
  17. akaballa123

    direct to multiple pages using php

    Hi, I was wondering, If I have two buttons on a page. If button A is clicked then it should directed to another page ( page A). If button B is clicked then it should be directed to page B. Eventhough I know how to do this using javaScript, I would like to use php to form this function. Thanks
  18. akaballa123

    php report generate

    Hi, I am i nthe process of creating a website using my limited knowledge of php scripting. This website is used to obtain training information from various users. I have a form to obtain the training session they have ben to recently, and another form to add a new training course available...
  19. akaballa123

    auto-numbering

    Hi, I am just getting used to creating and storing databases in mysql through phpmyadmin. I have assigned a primary key to one of my fields in a table and would like to use that field for auto-numbering ( and auto-increment ) my rows in the table. I am not too sure how to do that in...
  20. akaballa123

    mysql connection

    hi im a phph newb and have a problem with my code. I have created a code to retrieve information from a field in a mysql database. I am displaying the information in a drop down field through running a while loop: <?php $result = @mysql_query('SELECT trainingName FROM addtrainingTbl')...

Part and Inventory Search

Back
Top