User Profile

Collapse

Profile Sidebar

Collapse
codeseeker1
codeseeker1
Last Activity: Feb 10 '09, 11:49 AM
Joined: Jan 19 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • codeseeker1
    replied to FPDF class
    in PHP
    thanks for the help. i refered fpdf class and got a function to wrap text within a cell.
    See more | Go to post

    Leave a comment:


  • codeseeker1
    started a topic FPDF class
    in PHP

    FPDF class

    hi,
    iam generating pdf using fpdf class.do anybody have an idea of wrapping text in a single cell inaside a table?

    thanks
    See more | Go to post

  • codeseeker1
    started a topic displaying a loading message
    in PHP

    displaying a loading message

    hi,
    iam including a php page containing db insertion and xml creation in another page.but until the included page fully processed,page diaplaying contens is fully blank.any idea of giving a loading message till included page fully processed? page is included at top of page
    Code:
    <?php
    session_start();
    if(!isset($_SESSION['userid']))
    {?>
    <script type="text/javascript">window.location='index.php'</script>
    ...
    See more | Go to post

  • codeseeker1
    replied to Delay in loading Menu
    if u r using a template, style in template will b executed only after page fully loads.u can avoid it by giving css style for menu in the same page where it is delayed.
    See more | Go to post

    Leave a comment:


  • codeseeker1
    started a topic wrapping a text in pdf

    wrapping a text in pdf

    hello all,,

    iam working with tables in a pdf page. can anybody help in wrapping a text within a cell in a table.i tried with a multicell function..but not successfull.
    an anybody help me?

    thanks in advance
    See more | Go to post

  • codeseeker1
    replied to Pop Up Window not working
    Pop Ups

    Code:
    <td align="center"><?php echo "<a href=\"javascript:getDetails('$drg_id');\">[Details]</a>";?></td></tr>
    
    function getDetails(drgid)
    {
    	//alert(drgid);
    	var drg= encodeURIComponent (drgid);
    	window.open( "PRQDetails.php?drug=drug&drgid="+drg, "myWindow", "location=0,status=1,height = 600, width
    ...
    See more | Go to post
    Last edited by Dormilich; Feb 2 '09, 11:13 AM. Reason: edited code block for readability

    Leave a comment:


  • codeseeker1
    started a topic Pop Up Window not working

    Pop Up Window not working

    Hello all,

    iam working with a pop up window usinh window.open();
    Correctly working in most cases.But when clicked on cetain <a href>
    showing Internet Explorer Cannot display page.
    Can anyone help me?

    thanks in advance
    See more | Go to post

  • codeseeker1
    started a topic getting value from a disabled textbox
    in PHP

    getting value from a disabled textbox

    hi all,
    i have a disabled textbox in a php page .But i need to get its value on form submit.can anyone help me?

    thanks in advance
    See more | Go to post

  • codeseeker1
    started a topic Checking format of a csv file
    in PHP

    Checking format of a csv file

    hi all...does anyone know how to check column format of a csv file?
    can we check header of a csv file with a specified format?
    See more | Go to post

  • codeseeker1
    started a topic Reading first row from a csv file
    in PHP

    Reading first row from a csv file

    hi all,
    i am currently working with a csv file to import data into mysql using php.
    i am able to read all data using the piece of code.
    Code:
    $fd = fopen ("upload/consumption.csv", "r");
    while (!feof ($fd))
    { 	$buffer = fgetcsv($fd, 5000);
    }
    fclose ($fd);
    but i want to read only first row of file.can anyone help to get it?

    thanks in advance
    See more | Go to post

  • codeseeker1
    replied to javascript error
    sorry ..i forgot to include the code

    Code:
    function change(src,str) 
    {    alert(src) 
        var cntrl; 
        if(src=="department") 
        { 
            myAjax.open("GET", "Ajax_EditDetails.php?src="+src+"&val="+str); 
            myAjax.onreadystatechange = function() 
            { 
    --code-- 
                                     } 
    if(src=="packing")
    ...
    See more | Go to post
    Last edited by gits; Jan 20 '09, 11:28 AM. Reason: added code tags

    Leave a comment:


  • codeseeker1
    replied to javascript error
    javascript not working without an alert box

    hi all...
    i've a php code code using ajax.Code is working properly with an alert box.but when alert box is removed,rest of code not working perfectly.code below
    Code:
    function change(src,str)
    {	alert(src)
    	var cntrl;
    	if(src=="department")
    	{
    		myAjax.open("GET", "Ajax_EditDetails.php?src="+src+"&val="+str);
    ...
    See more | Go to post

    Leave a comment:


  • codeseeker1
    replied to javascript error
    here is my js code..
    Code:
    function change(src,str)
    {    alert(src)
        var cntrl;
        if(src=="department")
        {
            myAjax.open("GET", "Ajax_EditDetails.php?src="+src+"&val="+str);
            myAjax.onreadystatechange = function()
            {
    --code--
                                     }
    if(src=="packing")
        {
            //alert(src)
    ...
    See more | Go to post
    Last edited by acoder; Jan 20 '09, 08:33 AM. Reason: Added [code] tags

    Leave a comment:


  • codeseeker1
    started a topic javascript error

    javascript error

    currently iam working with a php code along with ajax.
    code works properly with an alert box.when alert box is removed,rest of code not working.can anyone help?

    thanx in advance
    See more | Go to post
No activity results to display
Show More
Working...