User Profile

Collapse

Profile Sidebar

Collapse
phpmaet
phpmaet
Last Activity: Sep 11 '07, 06:26 AM
Joined: Sep 6 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Hi
    Thanks for ur reply.. Can you tell me url names for that

    Thanks
    Maruthu
    See more | Go to post

    Leave a comment:


  • phpmaet
    started a topic Can we read an log for all mail Transaction

    Can we read an log for all mail Transaction

    Hi
    I need a solution for POP3 mail server and I need a software for following features.

    • All mail transaction will be recorded seperately for admin's review at any time.
    • Retrieve mails from any POP3 server provided by any service provider
    • All copy of incoming and outgoing mails will be preserved for admins review.
    •Full featured address book

    Thanks
    Maruthu
    See more | Go to post

  • phpmaet
    started a topic Can we recorded Mail Transaction

    Can we recorded Mail Transaction

    Hi
    I need a solution for POP3 mail server. I need a software for following features.

    All mail transaction will be recorded seperately for admin's review at any time.
    • Retrieve mails from any POP3 server provided by any service provider
    • All copy of incoming and outgoing mails will be preserved for admins review.
    • Full featured address book

    Pls help me

    ...
    See more | Go to post

  • Unable to migrate data from Access source to Oracle destination

    hi
    I have migrated the Access 2003 database to Oracle 10g database by Oracle workbench. Actually i am using the platform is Microsoft Windows Server 2003 for migaration. and i have configured OMWB with Access Plugins in Windows sever 2003. Basically i have converted the Access database to XML file. then the oracle table model is created. but the data's are not migrated to oracle table. while am migrating to oracle. It's shows the following...
    See more | Go to post

  • Unable to migrate data from Access source to Oracle destination

    hi
    I have migrated the Access 2003 database to Oracle 10g database by Oracle work

    bench.
    Actually i am using the platform is Microsoft Windows Server 2003 for migaration.

    and i have configured OMWB with Access Plugins in Windows sever 2003.

    Basically i have converted the Access database to XML file. then the oracle table

    model is created. but the data's are not migrated...
    See more | Go to post

  • Hi,
    you can load the all AJAX response content in the DIV ID.


    Code:
    document.getElementById("DIV_ID").innerHTML="";
    document.getElementById("DIV_ID").innerHTML=HTTP.responseText;
    Thanks
    See more | Go to post

    Leave a comment:


  • phpmaet
    replied to Visual Basic
    Hi,

    you can use this code.

    Code:
        With Adodc1
            .ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
                App.Path & "sample.mdb;Persist Security Info=False"
            .RecordSource = "select * from test order by id"
        End With

    Thanks
    See more | Go to post

    Leave a comment:


  • phpmaet
    started a topic Retrieve the next record id
    in PHP

    Retrieve the next record id

    Hi
    I have viewed the record from mysql table. But I need to retrieve the next record id while reading the each an every record.

    Could someone explain how I retrieve the next record id in a table(Note. WHILE READING THE CURRENT RECORD)?

    Thanks
    See more | Go to post

  • phpmaet
    replied to unlink from server problem ?
    in PHP
    Hi,
    you should use valid image path. this is corrent syntax.

    unlink('$imagep ath');

    Thanks
    See more | Go to post

    Leave a comment:


  • phpmaet
    replied to new commer to php field
    in PHP
    Hi,
    you can use the following code. It's very useful for you.


    [PHP]

    $quy="SELECT * FROM `dt_tb` WHERE dt BETWEEN '2006-01-01' AND '2006-10-3'";
    $quyres=mysql_q uery($quy);
    [/PHP]


    Thanks
    See more | Go to post

    Leave a comment:


  • phpmaet
    replied to FCK integration problem within PHP
    in PHP
    Hi,
    Try this alternate code.


    [PHP]$oFCKeditor = new FCKeditor('home text');
    $oFCKeditor->BasePath = 'FCKeditor/';
    $oFCKeditor->Value ="";
    $oFCKeditor->Height=300;
    $oFCKeditor->Width=700;
    $oFCKeditor->Create(); [/PHP]

    If you want the TextArea data use this,

    [PHP]$FCKeditor=$_PO ST['hometext'];[/PHP]

    Thanks
    See more | Go to post

    Leave a comment:


  • Hi,
    please note what error you have?

    thanks
    See more | Go to post

    Leave a comment:


  • phpmaet
    started a topic Difference between PostgreSQL and MySQL

    Difference between PostgreSQL and MySQL

    Hi,
    Can anyone please tell me the main difference between PostgreSQL and MySQL?. What is the best DB server?.

    Thanks
    See more | Go to post

  • phpmaet
    replied to Getting selected option
    Hi,
    This code very useful for you. try this code,


    Code:
    <form method=post action=form-checkboxck.asp>
    <input type=checkbox name=t1 value='PHP'>PHP
    <input type=checkbox name=t1 value='ASP.NET'>ASP.NET
    <input type=checkbox name=t1 value='PEAR'>PEAR
    <input type=checkbox name=t1 value='JAVA'>JAVA
    <input type=submit value='Submit'>
    </form>
    ...
    See more | Go to post

    Leave a comment:


  • Hi
    check your connection details.

    Try this code,

    [PHP]<?
    // Connect to the Postgres Database

    $conn = pg_Connect("loc alhost", "5432", "", "", "test");
    if (!$conn) {echo "Connection error occurred.\n"; exit;}

    // Insert the form values into the database

    $result = pg_Exec($conn," INSERT...
    See more | Go to post

    Leave a comment:


  • Is there a way to do it?
    See more | Go to post

    Leave a comment:


  • Hi,
    This code remove the first 3 character from a listbox.

    Code:
     list1.text=mid(list1.text,1,3)
    Thanks
    See more | Go to post

    Leave a comment:


  • phpmaet
    replied to Check if table exist
    Hi,
    could you try this code?. i hope it's very useful for you.


    Code:
    Public Function TableExistsADO(ByVal strDB As String, strTable As String) As  Boolean  
      
    On Error GoTo Hell  
    
    Dim RS As Recordset  
      
    Set RS = New Recordset  
      
    RS.Open "SELECT * FROM " & strTable & " WHERE 1=0", _  
      
    "Provider=Microsoft.Jet.OLEDB.4.0;Data
    ...
    See more | Go to post

    Leave a comment:


  • phpmaet
    replied to Executing another PHP page
    in PHP
    Hi,

    This is another way for skip the current page.

    [PHP]if($_POST($cond ))
    {
    echo '<meta http-equiv=refresh content=0;url=h ome.php>';
    }[/PHP]
    See more | Go to post

    Leave a comment:


  • hi,
    please verify your syntax again.

    Steps
    -----

    1. Create an image 16X16 pixels in size.

    2. Save the image as an ICO file(favicon.ic o).

    3. Upload it to your website.


    and also,

    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />


    thanks
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...