server side validation without server side script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vinot85
    New Member
    • Aug 2007
    • 53

    server side validation without server side script

    Is there is any easy way to do the Server side validation in PHP without using the Server side script?
    Is there is any options to do the Validations as in .NET by using validation controls?
    There is a need to validate it by using several if statements in PHP at server side.

    Give my a finer solution to validate them easily.
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by vinot85
    Is there is any easy way to do the Server side validation in PHP without using the Server side script?
    This makes no sense; you cant do server side vlidation without using a server side coding.

    Please explain a little more

    Comment

    • Atli
      Recognized Expert Expert
      • Nov 2006
      • 5062

      #3
      Hi. Like Markus said: you can not do server side validations without server side code.

      This is also true for the ASP.Net controls.
      Not really knowing all the bells and whistles of ASP.Net, I do believe that the ASP.Net validation controls require some server-side coding as well.

      Comment

      • dlite922
        Recognized Expert Top Contributor
        • Dec 2007
        • 1586

        #4
        Originally posted by vinot85
        Is there is any easy way to do the Server side validation in PHP without using the Server side script?
        Is there is any options to do the Validations as in .NET by using validation controls?
        There is a need to validate it by using several if statements in PHP at server side.

        Give my a finer solution to validate them easily.
        see Javascript

        Validations on client side, then submit, but STILL validate, it is possible for hackers to by-pass javascript validation, i.e. mysql_real_esca pe_string().

        Good luck.

        Comment

        • gnawz
          New Member
          • Nov 2006
          • 64

          #5
          Originally posted by dlite922
          see Javascript

          Validations on client side, then submit, but STILL validate, it is possible for hackers to by-pass javascript validation, i.e. mysql_real_esca pe_string().

          Good luck.
          What validation are you talking about?

          Give an example!

          Comment

          Working...