client-side checks in php

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • asharkhan
    New Member
    • Oct 2006
    • 1

    client-side checks in php

    hi all

    i make my 1st webside in php.
    plz help me out that,what function(like Alert in javascript) should i used to display massage box at client-side in php.
  • vssp
    Contributor
    • Jul 2006
    • 268

    #2
    <script language="javas cript">
    function call()
    {
    alert ("the scripts");
    }
    </script>

    Use this funtion

    vssp

    Comment

    • exoskeleton
      New Member
      • Sep 2006
      • 104

      #3
      there is no such "alert" in php sir to display a message in a message box...

      Originally posted by asharkhan
      hi all

      i make my 1st webside in php.
      plz help me out that,what function(like Alert in javascript) should i used to display massage box at client-side in php.

      Comment

      • ronverdonk
        Recognized Expert Specialist
        • Jul 2006
        • 4259

        #4
        You want a box, you get a box:
        Code:
        echo "<table><td style='background-color:#eee;color:black;border:2px solid black;padding:15px;'>Your request has been executed!</td></table>";
        Ronald :cool:

        Comment

        Working...