Jump to content

help: url validation


air_tebu

Recommended Posts

hi,

i'm trying to make a data link that only authorized person( reconized by session) can view the data

i'm try to make function with java but seem jaca cant handle session.

what i need to do is, compare the user that log in(session) with $row_rs_MainTable['insrt_by'].

 

if the user session match with the record field 'insert_by', it will open new page with url parameter.

if user session not match, it will alert that user not autorized.

 

this is my java code(error) and pls help me convert it into php code(without eror)

 

function validate(txt)
{
if (  $_SESSION['MM_Username'] ==  $row_rs_MainTable['insrt_by'] )
    {
   location.href = insert_data3.php?recordID=<?php echo $row_rs_MainTable['cust_no']; ?> 
    }
  else [/td][/tr][/table]
   {
   alert(txt);
   }
}

 

 <td><a href="" onclick="validate('You Are Not Autorized')">Delete[/url]</td>

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/88140-help-url-validation/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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