Jump to content

lakshmiyb

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Posts posted by lakshmiyb

  1. hi,

     

    I have wamp 2 with 5.3.0 in windows XP and i have installed ffmpeg .

     

    but i  am getting the

    php startup:ffmpeg:unable to initialize module

    Module compiled with module API=20060613

    PHP  compiled with module API=20090626

    These options need to match

     

     

    Is there a  way to get rid of this.

     

    any help will be helpful

    thanking u in advance.

     

     

  2. hi friends,

     

    i have the thumbnails retrived from database

     

    when the thumb is clicked i nee the player to play the video of that thumb

     

    for that i need to embed the vlc with plugins, i tryed many times but i am not able to do that

     

     

     

    please can any one help me

  3. hi,

    i am planning to upload my videos to my site,

    please can u help me to do this.

    present i am thinking to upload  the videos to play in  vlc later on i will use my own player which is going to be designed

    but at present i want to uplaod my videos in to my site

     

     

    can u please help me in this

     

    thanking u in advance

  4. hi,

    i am planning to upload my videos to my site,

    please can u help me to do this.

    present i am thinking to upload  the videos to play in  vlc or realplayer

    later on i will use my own player which is going to be designed

    but at present i want to uplaod my videos in to my site

    and i am not getting the right way of that

     

    can u please help me in this

     

    thanking u in advance

  5. just go through this it may help u

    <?php
    $number_of_thumbs_in_row = 4;
    
    	$result = mysql_query( "SELECT photo_id,photo_caption,photo_filename,photo_category FROM gallery_photos");
    
    
    		while( $row = mysql_fetch_array( $result ) )
    		{
    			$result_array[] = "<img src='".$images_dir."/tb_".$row[2]."' border='0' alt='".$row[1]."'/><br>$row[1]<br>$row[3]<br>$row[0]";
    		   
    		}
    		mysql_free_result( $result );	
        
    		$result_final = "<tr valign='top' align='center' class='style1'>\n";
    
    		foreach($result_array as $thumbnail_link)
    		{
    
    			if($counter == $number_of_thumbs_in_row)
    			{	
    				$counter = 1;
    				$result_final .= "\n</tr align='center' class='style1'>\n<tr align='center' class='style1'>\n";
    				     
    			}
    			else
    			   
    			$counter++;
                      
    			$result_final .= "\n<td class='style1'>".$thumbnail_link."</td>\n";
    
    
    		}
    
    
    		if($counter)
    		{
    
    			if($number_of_photos_in_row==$counter)
    		$result_final .= "\n<td class='style1' colspan='".($number_of_photos_in_row=$counter)."'></td>\n";
    
    			$result_final .= "</tr>";
    
    		}
    
    	}
    
    echo <<<__HTML_END
    
    <html>
    <head>
    <title>Gallery View</title>
    </head>
    <body>
    <table width='100%'  border='0' cellpadding="10" cellspacing="10">
    $result_final	
          
    </table>
    </body>
    </html>
    
    __HTML_END;
    ?>
    

  6. hi it is working well,

    but ihave  the login form as lightbox,

    it is not working there

     

    here is my code for lightbox with error display code

     

    <?php 
    	if(isset( $_SESSION['Email']))
    	{		echo "<a href='signout.php' class='style1'><img src='images/SIGNOUT-LOGO.jpg' alt='SIGNIN' width='18' height='21' border='0' /> </a>";}
    	else {
    		echo "<div id='filter'></div>
    <div id='box'>
      <span id='boxtitle'></span>
       <?php
    if(!empty($error)){
    ?>
       <B><?php echo $error; ?></B>
      <?php
    }?>   
       <form method='POST' action='#' target='_parent'>
    <table width='98%' border='0' cellspacing='0'>
                        
                        <tr>
                          <td width='47%'>    <span class='style1'>Email ID </span></td>
                          <td width='53%'><input name='Email' type='text' size='11' /></td>
                          </tr>
                        <tr>
                          <td>    <span class='style1'>Password</span></td>
                          <td><input name='Password' type='password' size='13' /></td>
                          </tr>
                        <tr>
                          <td>  
                            <table width='100' border='0' cellspacing='0' cellpadding='0'>
                              <tr>
                                <td width='10'>    </td>
                                <td><a href='registerpage.php'><span class='style1'>Register</span></a></td>
                                </tr>
                              </table></td>
                          <td><input type='image' name='Submit' src='images/login.jpg' id=login_button/>   <input type='button' name='cancel' value='Cancel' onclick='closebox()' /></td>
                          </tr>
                        <tr>
                          <td colspan='2' align='center'>   <a href='forgotpassword.php'><span class='style1'>Forgot Password </span></a></td>
                          </tr>
                        </table></form>  
    </div>
    <a href='#' onClick='openbox()'><img src='images/SIGNIN-LOGO.gif' alt='SIGNIN' width='23' height='26' border='0' /></a>";
    	}
    
    	?>
    

     

    please help me

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