User Profile

Collapse

Profile Sidebar

Collapse
ms115
ms115
Last Activity: Dec 17 '15, 12:21 PM
Joined: Nov 14 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ms115
    started a topic php validation help to match email and password
    in PHP

    php validation help to match email and password

    Code:
    <?php
    
    if (isset($_POST['submit'])){
        $error = array()
    
    
    if (empty($_POST['mail'])) {
            $error[] = 'Please Enter your Email and also confirm your mail';
        } else {
    
    
            if (preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/", $_POST['mail'])) {
                $Email = $_POST['mail'];
            } else {
    ...
    See more | Go to post
    Last edited by Rabbit; Dec 16 '15, 05:19 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.

  • ms115
    started a topic Can Someone help ME

    Can Someone help ME

    I build an application in VB6 to save document(of any type i.e. word , pdf, ppt) to Microsoft access database of which i have a combobox on VB form to select document to open to OLE so i can manipulate with it but its give me "runtime error 31031 method createlink of object failed" can anyone help me to solve it. my code is below

    Private Sub CboFiles_Click( )
    If CboFiles.ListIn dex <> -1 Then
    ...
    See more | Go to post
No activity results to display
Show More
Working...