User Profile

Collapse

Profile Sidebar

Collapse
itsmenarwal
itsmenarwal
Last Activity: Feb 28 '10, 03:36 PM
Joined: Jan 23 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • this is the last file actaul code...u tell me what u want should i send all files
    See more | Go to post

    Leave a comment:


  • itsmenarwal
    started a topic how to send disabled textbox value to next page
    in PHP

    how to send disabled textbox value to next page

    HI everyone

    I have a textbox i have disabled it with a fix value(like in online papers if you solved first question and move to second question first question get disabled now u cant make editing into this).I want something like this.But i dont know how to send a disable box value to next page with post or get..

    Code:
    <input type="text" id="username" value="<?php echo $_SESSION['employee']['username'];
    ...
    See more | Go to post

  • how i can retrive files from folder on hard-disk and how to display uplaoded file dat

    I have made a application form in which i am asking for username,passwo rd,email id and user's resume.Now after uploading resume i am storing it into hard disk into htdocs/uploadedfiles/..in a format something like this username_filena me.In database i am storing file name,file size,file type.Some coading for this i am showing here
    Code:
    $filesize=$_FILES['file']['size'];
    $filename=$_FILES['file']['name'];
    $filetype=$_FILES['file']['type'];
    ...
    See more | Go to post

  • NOt able to update existing data of a application form.

    I am editing my application form.So what i am Doing telling you here..I am already logged in

    * First of all i am giving a edit link(edit_profi le1.php) on my home page
    * NOw i am asking again for username and password so that unauthorized user can not making editing in your profile
    * NOw on edit_profile1.p hp i am checking username and password sent by user to the username and password stored in database...
    See more | Go to post

  • But in this thread solution is not given in this thread it is told that u should add an extra column in ur database to store login status.I dont know what should be stored there and how i can retrive this state at login page..Can i use all password matching php coading on login page also...plz explain little bit more for those guies who need some more explaiantion in form of code to grab concept...
    See more | Go to post

    Leave a comment:


  • But how to check login status and what values we should send to database..Plz give example with code so that we can understand..I will be thankfull to you
    See more | Go to post

    Leave a comment:


  • how to allign links,videos,photos properly.plz check out below code ..

    HI Everyone..

    I am not able to align links,videos,ph otos etc in right way.Foe example i have aligned sign out on right side page but when i click on any area which falls in the row area(in which sign out is placed),i got sign out but i want when i click only on link i get sign out.I have used photos in my pages and videos.I have placed photos in a table in less than half of page width .I want that in remaining half area videos player...
    See more | Go to post

  • yaa i get the point this time.Thank you very much sir...i use this code and it is working means now i am able to allign it where actully i wanted..
    <code>
    <a
    style="display: block;width:250 px;height:200px ;position:relat ive;left:1054;"
    id="player">
    </a>
    </code>
    See more | Go to post

    Leave a comment:


  • When I click on ‘remember me’ and after sign out, when I try again to login cookies a

    I have a login form in which i have a username, password and a remember me radio button option. Now I want it so that when I've signed out from home page and I try again to login then without asking for a username and password I get logged in because I am going to store the username and password values into cookie.

    I wrote code on password_match. php page(action page of login page)
    Code:
    $con=mysql_connect("localhost","root","");
    ...
    See more | Go to post
    Last edited by Atli; Feb 1 '10, 03:38 PM. Reason: Fixed the [code] tags... The "preview" button is there for a reason!

  • <code>
    <a
    style="display: block;width:250 px;height:200px ;position:relat ive;right:0;"
    id="player">
    </a>
    </code>

    I also tried this but this is also not working.i am surprised why this is happening..Any suggestion plz...
    See more | Go to post

    Leave a comment:


  • oh i am sorry actaully i used by removing this align="right" but code still not working...It is not making nay effect on my player block it is as it is on left side of page

    Code:
    <a 
    	style="display:block;width:320px;height:260px;position:relative;right=0;" 
    	id="player">
    </a>
    See more | Go to post

    Leave a comment:


  • Code:
    <a 
    	style="display:block;width:250px;height:200px;align:right;position:relative;right=0;" 
    	id="player">
    </a>
    
    
    <script language="JavaScript">
    flowplayer("player", "flowplayer-3.1.5.swf" , { clip: { autoPlay : false, autoBuffering: true},   playlist: [ 'video.flv', 'flowplayer.flv'] });  //create a object of clip name
    </script>
    ...
    See more | Go to post

    Leave a comment:


  • how to align flowplayer block on right of the page

    HI Everyone

    I am using flowplayer for uploading videos so that client can play them.I am working on localhost.Now problem is that by default flowplayer comes in left hand side of the page.I want it to align on right hand side.I know somewhere align="right" or something like this will be used but i dont know where i have to put this word.I have tried a lot have done google have serched in flowplayer site have read their documentation...
    See more | Go to post
    Last edited by Atli; Jan 30 '10, 12:52 PM. Reason: Added [code] tags.

  • how to apply cookie in php how to store data in cookie how to reset it in php page..

    Hi everyone.....

    I read out the topic of how to pass a variable into another page using session.And mr.moderator have explained it with beauty.I apply this and it is working for me..Can anyone give such a good explaianation for cookie also..How to store data in cookie,destoy cookie etc un ,php page .I read out it from w3schools.com but i dont know how to implement that.Like session(how to pass varible through page)...
    See more | Go to post

  • i Tried to comment the above headers -> no error is displaying by doing this simply xampp.imagename (just like temp name is displaying..Sti ll i can download the file but file is not opening..Please help
    See more | Go to post

    Leave a comment:


  • itsmenarwal
    started a topic problem with hash function
    in PHP

    problem with hash function

    Hi

    I want that nobody can see my password even in database..

    So i used hash function like this

    Code:
    $passowrd_hash=hash('shal',$_POST['password']);
    NOw easily i can store this password_hash value into database...It will be something like in encrypted form...

    Now user know its origional password he dont know this encrypted password..

    Now if he try to login through...
    See more | Go to post
    Last edited by Atli; Jan 25 '10, 02:45 PM. Reason: Added [code] tags.

  • can’t send cache limit cheaker and problem in back button session variable still dis

    HI everyone

    1. As user enter username and password in sign-in-form.php then values are collected in sign-in-action-form.php page and the i am storing username into session variable like this In database i have a table named employee

    Code:
    <a href="logout_file.php">Sign Out</a>
    if (username and passwords are matched)
    {
    session_start();
    $_SESSION['employee']['id'] = $row['User_Id'];
    ...
    See more | Go to post
    Last edited by Atli; Jan 25 '10, 02:45 PM. Reason: Added [code] tags.

  • now check out the error in opening the downloaded file

    @ati

    First of all i want to say thanks to you for such good tutorials.Reall y they help new guies very much.I just started php i found this link for uploading files..It is really appriciable.Kee p it up..Kepp going bro...


    I dont know much about headers but from ur post i cam to know that to see the data on client browser server has to send some...
    See more | Go to post
    Last edited by Atli; Jan 25 '10, 07:07 AM. Reason: Added [code] tags.

    Leave a comment:


  • i posted one problem regarding opening downladed file error(not opening image)..i am not finding it..where it is
    See more | Go to post

    Leave a comment:


  • Hello Fiends...

    I follow all steps mentioned in this tutorials...All things are going fine..
    But i have one problem When i download the file(it is downloaded no problem) but when i open it then file is not opening..Like suppose i have downloaded an image then after download if i try to open it erro is photogallry can not open this,may be file format is not supported..I am using window vista..So plz tell me where i am falling...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...