Jump to content

raj23

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Posts posted by raj23

  1. Hi,

        I think you can use this code generator for  php TTswiftcoder - v2.6.It is best suitable with mysql and is free to use  for both commercial and non commercial.It creates scripts that connect the database.There are lot of code generator available but this code generator is suitable for access management system i think so.Try this one it'll will be very helpful.

  2. Hi,

        Why you are using so complicated code use simple code.The syntax for displaying today and tomorrow date

    $tomorrow = date ("Y-m-d", mktime (0,0,0,date("m"),(date("d")+1),date("Y")));

    $actualdate = date("Y-m-d");

    you can set today's as a default

  3. Hi,

      First restart your  MySQL service and do the procedures that you had already done.If not working means then there is problem with your database. From phpmyadmin export your old database and import the new database and do your process it'll surely work.Again if there is a problem then you have to check your sql query and reinstall wordpress

    and repeat the process.

     

  4. Hi,

        Just insert a paragraph tag in your div like

    <div style="width: 100px;">

    <p>testtesttesttesttesttesttesttesttest</p><p>testtesttesttesttesttesttesttesttesttesttesttesttesttest</p>

    </div>

    and use display:block comment in CSS like this

    p

    {

      display:block;

    }

    You can also use h4 tag in place P tag

     

  5. Hi,

        Here I've provided the solution for the error.You have to follow certain steps

    Go to C:\wamp\alias. Open the file phpmyadmin.conf and add

    Options Indexes FollowSymLinks MultiViews

    Allow Override all

    Order Deny,Allow

    Deny from all

    Allow from 127.0.0.1

    Allow from MACHINE_IP

     

  6. Hi,

     

      What you do is change the way that you display the date returned from the database.

    This is easily achieved using the MySQL DATE_FORMAT function.

    Using date_format you can set any date format:

        select date_format(FromDate,"%d/%m/%Y") AS FormattedDate FROM tbl_event

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.