User Profile

Collapse

Profile Sidebar

Collapse
tariquetuku
tariquetuku
Joined: Aug 30 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • tariquetuku
    started a topic how to create a subdomain in php
    in PHP

    how to create a subdomain in php

    i want to create a subdomain upon each user registration as

    user.example.co m

    how it is possible?

    thanks
    See more | Go to post

  • tariquetuku
    started a topic Mysql Back up manager freeware needed

    Mysql Back up manager freeware needed

    I use mysql 5.0.45-community-ntl edition. i have to backup my mysql database in dvd automatically. is there any free ware tool or suggestion to do it?
    See more | Go to post

  • tariquetuku
    started a topic Authenticate and allow user to see a page
    in PHP

    Authenticate and allow user to see a page

    I have a site which contains a members' area. there, the members are assigned a value by which their authentication level is determined. the authentication levels are 1,2 or 3 etc. With this authentication, i redirect the index.php page, which links the other pages they are allowed to see.But it is not secured. Now i want to make the pages not available to them, which is not authenticated by them.i.e, a user can not enter a page which is not authenticated...
    See more | Go to post

  • tariquetuku
    started a topic Decimal insertion showing mysql error 1264

    Decimal insertion showing mysql error 1264

    When i want to put a value of 10000 in a decimal(6,2) variable, mysql shows me the out of range error error!!

    Can anyone solve it?
    See more | Go to post

  • tariquetuku
    started a topic why this query is making rubbish result?

    why this query is making rubbish result?

    the bill,paid and exempted are floating point variable.
    but when i run the query, the column of due outputs just blank while the sum(bill.exempt ed) returns 0. which is rubbish.
    Why it happens, why the due column is 0 whenever the sum(bill.exempt ed) is zero?

    Can anyone say it.

    The query is placed below:

    Code:
    select cc, sum(bill)as b,sum(paid)as p, sum(exempted) as ex, sum(bill.bill-bill.paid)-sum(bill.exempted)
    ...
    See more | Go to post

  • tariquetuku
    replied to Sum() is making problem
    Dear code green,

    it does not work also....
    See more | Go to post

    Leave a comment:


  • tariquetuku
    replied to Sum() is making problem
    Dear code green,

    It does not work....
    See more | Go to post

    Leave a comment:


  • tariquetuku
    started a topic Sum() is making problem

    Sum() is making problem

    i have a table called bill, in which there r three fields named bill,paid,exemp ted.
    when i when i want to deduct the due of each customer the following query does not work:

    Code:
    select customer.cc as ccc,
     customer.name as cname,sum(bill.bill) as bill,
     sum(bill.paid) as paid,
     sum(bill)-(sum(paid)+sum(exempted)) as due
     from customer,bill where customer.cc=bill.cc  group by customer.cc
    ...
    See more | Go to post

  • tariquetuku
    replied to Mysql Date Format
    Thanks Atli,

    I get it....
    See more | Go to post

    Leave a comment:


  • How to create a login and logout link in a php page

    How to create a login and logout link in a php page which will affect the session variable?

    Any code available?
    See more | Go to post

  • tariquetuku
    started a topic Mysql Date Format

    Mysql Date Format

    Can anyone plz advice, how to change mysql date format to (d-m-Y) permanently
    which will affect all the databases in the mysql server. i.e, i want to change the date format in one place which will affect all the database's date format automaticly?

    Is there any way out? Or code?
    See more | Go to post

  • tariquetuku
    replied to PHP sessions
    in PHP
    HI Atli,

    Ur suggestion works. Thanks a lot....
    See more | Go to post

    Leave a comment:


  • tariquetuku
    started a topic PHP sessions
    in PHP

    PHP sessions

    i am using php 5.2.5. i have a php script like this:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    ...
    See more | Go to post
No activity results to display
Show More
Working...