Jump to content

sushant_d84

Members
  • Posts

    41
  • Joined

  • Last visited

    Never

Posts posted by sushant_d84

  1. Hi you can use

    1) Redirection using header function

    2) You can use the JavaScript for redirecting

    3) You can use the include function for including next/other php page in current page.!!!

     

    Try this and let me know whethere this works for you!?

     

    Regards

    Sushant Danekar

     

  2. For your Info....

     

     

    Your Query should contain the clause as LIMIT 0,20 

     

    select * from tab1 LIMIT 0,20

     

    for next page u r query should be

     

    select * from tab1 LIMIT 21,39

     

    and so on...

     

     

    Lets try this and let me know if this useful for you...

     

     

    Regards

    Sushant

  3. Humm

    wow the Topic is Interested .

     

    Now we have the graph for PHP domains and IPS.

     

    If we can find the Graph of .NET and JAVA then we can guess the some good reason...

     

    I guess pepople like opensourceness everthing is free.

    and may be strategy got changed ,, may be because of features of ASP.net etc...

     

     

    what u people thing

     

    Please let me know

     

     

    Regards

    Sushant

  4. Hi...

     

    U actually need to rename each filed

     

    See the code as below ...........

     

    Changing ID to ID1

     

    ALTER TABLE `employee` CHANGE `id` `id1` int not null auto_increment primary key

    Changin NAME to ID

    ALTER TABLE `employee` CHANGE `name` `id` int not null auto_increment primary key

    CHaning ID1 to Name

     

    ALTER TABLE `employee` CHANGE `id1` `name` varchar (20) not null,

     

     

     

    Like this U need to do ..

     

    So that u r data will not lost

     

     

     

    Regards

    Sushant

  5. Hi there,

     

    When file get uploaded.. it goes the Temp Directory of the server.

    the file information is available in server variable $_FILES.

     

    Open the Help doc for $_FILES u will get all the info about uploaded file(s)...

    there also one more function move_uploaded_file .....which moves the uploaded file from Temp directory to specified destination location on server... That Destination path u can save in the Database.

     

     

    Use GD library for resizing the image...there are function available under GD library for resizing images....

×
×
  • 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.