air_tebu Posted January 28, 2008 Share Posted January 28, 2008 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> Quote Link to comment https://forums.phpfreaks.com/topic/88140-help-url-validation/ Share on other sites More sharing options...
trq Posted January 28, 2008 Share Posted January 28, 2008 You can't mix server side php with javascript which runs client side. Quote Link to comment https://forums.phpfreaks.com/topic/88140-help-url-validation/#findComment-451051 Share on other sites More sharing options...
air_tebu Posted January 29, 2008 Author Share Posted January 29, 2008 that y i need code in php Quote Link to comment https://forums.phpfreaks.com/topic/88140-help-url-validation/#findComment-451809 Share on other sites More sharing options...
air_tebu Posted January 30, 2008 Author Share Posted January 30, 2008 help somebody Quote Link to comment https://forums.phpfreaks.com/topic/88140-help-url-validation/#findComment-453076 Share on other sites More sharing options...
valtido Posted January 30, 2008 Share Posted January 30, 2008 why not use a small <iframe> box which will not change the whole page coz thats what your goal that you are trying to achiev. the users wont know the difference it will look like page didnt reload...PS Quote Link to comment https://forums.phpfreaks.com/topic/88140-help-url-validation/#findComment-453090 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.