Jump to content
xisto Community

contactskn

Members
  • Content Count

    752
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by contactskn

  1. Dear friend I think you should generate a plain looking report and after being displayed in the browser it can be printed by using the print option of the browser. Other wise you should use java script to solve your problem if you want the report to be printed directly.?
  2. Dear friend I agree with you completely it is (PHP BB ) is one of the best bulletin board script moreover its entirely free to be used.
  3. Dear friends it was really informative to go through this post. Thank you very much good new informations for me which I would like to use in developing my website. Thanks?
  4. Dear friend I personally use Opera and firefox and also heard about google browser also. But not yet used it. So my personal preference is Opera and I am fully satisfied with it.
  5. My dear friend what I think is God is there in each one of us as the kindness and good things in us. So if we are good to others to the poor people out there and if we are kind to the needy people and help them when and where required then even we can be like a good. For that we should get rid of all the usual bad habits in us like hattred, jealousy etc. And always be kind to others. It may be possible that others may differ in there views from me But I think that the super power know as God resides in each and every one of us.
  6. My dear friend Bang a warm welcome to you my dear Its the best forum and the most clean one you should be carefull about spamming out here. Please never Spam. Try to keep this forum the most clean one. You should post quality posts and in return you will get Mycents which can be used for purchasing services from Xisto - Support. So best of luck and feel free to ask and clarify your doubts The members out here are really very helpfull and cooperative. So post quality posts and have fun.?
  7. My dear friend I think it will depend the technologies which you are using for your studies etc. I am a software developer and I am using Micro Soft technologies so I personally prefer Windows and have a bit of knowledge of Linux not much so I think I am not the one to comment on it that how is linux or more about linux.
  8. My dear friend. I can speak and write about 6 languages. They are English, Hindi, Malayalam, Tamil, Sanskrit, Urdu. My favorite language is Malayalam as its my mother tongue. I want to learn French. I am very keen towards learning languages and thats why I want to learn more and more languages. Is their any one who can help me in learning online languages and that also for free specially French if possible please help me. Thanks in advance.
  9. My dear friend it entirely depends upon the person's choices, interests, etc. No one can specify the best job for other's. The best job according to me may be the worst job for some body else on earth. So my view is its you who should decide the best job for you and go for it and try to achieve it any how. It will depend entirely on your interests and obviously your qualifications. So best of luck for finding your best job. By the way my interest is much in developement and fortunately I am doing the same.
  10. Dear friend I live in India. Precisely Kerala.
  11. Dear friend Its Windows for me. As I am a software developer and I use Microsoft technology so my favoriate OS is windows. By the way I have also used Linux but not using it regularly. So I don't know much about it.
  12. Dear friends I have wrote some login logout programs but resulted in errors. Please help me. The name of the table is ‘matri’ which includes the fields named as ‘usern’ and ‘passw’. The files are checklogin.php // Define $myusername and $mypassword $myusername=$_POST[\'myusername\']; $mypassword=$_POST[\'mypassword\']; // To protect MySQL injection (more detail about MySQL injection) $myusername = stripslashes($myusername); $mypassword = stripslashes($mypassword); $myusername = mysql_real_escape_string($myusername); $mypassword = mysql_real_escape_string($mypassword); $sql=\"SELECT * FROM matri WHERE usern=\'$myusername\' and passw=\'$mypassword\'\"; $result=mysql_query($sql); // Mysql_num_row is counting table row $count=mysql_num_rows($result); // If result matched $myusername and $mypassword, table row must be 1 row if($count==1){ // Register $myusername, $mypassword and redirect to file \"login_success.php\" session_register(\"myusername\"); session_register(\"mypassword\"); header(\"location linenums:0'><?phpob_start();// Connect to server and select databse.include \'connect.php\';// Define $myusername and $mypassword $myusername=$_POST[\'myusername\']; $mypassword=$_POST[\'mypassword\']; // To protect MySQL injection (more detail about MySQL injection)$myusername = stripslashes($myusername);$mypassword = stripslashes($mypassword);$myusername = mysql_real_escape_string($myusername);$mypassword = mysql_real_escape_string($mypassword);$sql=\"SELECT * FROM matri WHERE usern=\'$myusername\' and passw=\'$mypassword\'\";$result=mysql_query($sql);// Mysql_num_row is counting table row$count=mysql_num_rows($result);// If result matched $myusername and $mypassword, table row must be 1 rowif($count==1){// Register $myusername, $mypassword and redirect to file \"login_success.php\"session_register(\"myusername\");session_register(\"mypassword\"); header(\"location:login_success.php\");}else {echo \"Wrong Username or Password\";}ob_end_flush();?> The second file is login.php .\"AND `passw`=PASSWORD(\'\".$_POST[\"password\"].\"\') \" .\"LIMIT 1\"; // Run query $r = mysql_query($q); if ( $obj = @mysql_fetch_object($r) ) { // Login good, create session variables $_SESSION[\"valid_id\"] = $obj->id; $_SESSION[\"valid_user\"] = $_POST[\"username\"]; $_SESSION[\"valid_time\"] = time(); // Redirect to member page Header(\"Location linenums:0'><?phpsession_start();// dBase fileinclude \"connect.php\";if ($_GET[\"op\"] == \"login\") { if (!$_POST[\"username\"] || !$_POST[\"password\"]) { die(\"You need to provide a username and password.\"); } // Create query $q = \"SELECT * FROM `matri` \" .\"WHERE `usern`=\'\".$_POST[\"username\"].\"\' \" .\"AND `passw`=PASSWORD(\'\".$_POST[\"password\"].\"\') \" .\"LIMIT 1\"; // Run query $r = mysql_query($q); if ( $obj = @mysql_fetch_object($r) ) { // Login good, create session variables $_SESSION[\"valid_id\"] = $obj->id; $_SESSION[\"valid_user\"] = $_POST[\"username\"]; $_SESSION[\"valid_time\"] = time(); // Redirect to member page Header(\"Location: members.php\"); } else { // Login not successful die(\"Sorry, could not log you in. Wrong login information.\"); } }else {//If all went right the Web form appears and users can log in echo \"<form action=\\\"?op=login\\\" method=\\\"POST\\\">\"; echo \"Username: <input name=\\\"username\\\" size=\\\"15\\\"><br />\"; echo \"Password: <input type=\\\"password\\\" name=\\\"password\\\" size=\\\"8\\\"><br />\"; echo \"<input type=\\\"submit\\\" value=\\\"Login\\\">\"; echo \"</form>\"; }?> The next file is login_success.php // Check if session is not registered , redirect back to main page. // Put this code in first line of web page. <? session_start();if(!session_is_registered(myusername)){header(\"location:login.php\");}?><html><body>Login Successful</body></html> And the last file is logout.php // Put this code in first line of web page. <? session_start();session_destroy();?>Please help me as I run the login.php it shows the error “Sorry, could not log you in. Wrong login information.” and I am not getting why please help me out to rectify this error. Thank you in advance. Notice from truefusion: Switched QUOTEs to CODEBOXes and CODE
  13. Dear friends I have made a website of my own and basically trying to provide free matrimonial services. I have made a members registration page and the data is being transfered perfectly to the my sql database.?Now I would like to make a search page which should be opened by the members only that means a login facility should be their which being successful will be showing the data searched to the members.?In the registration form I am storing the values of the login and password by the field names as "usern" and "passw".?please help me out with serious working codes for the login and logout facilities in php. Thank you very much in advance.?
  14. Even some times before I was having the same thoughts as you had right now but after joining Xisto my thoughts were changed and now I can say that what ever promises are made by Xisto they are really fullfilled and Xisto is the best hosting site.?
  15. Dear friend its a good one and a bit can be worked on the looks of the site and try to give more proffessional look to it. Its simple and good one right now.
  16. Dear friend it entirely depends on your knowledge and command on web languages and I think as a beginer you should try some free templates and edit them as per your needs. You can also learn by going through them codes etc of the free templates and knowing the process how they came with the design so best of luck for your learning.?
  17. My suggestions will be of Sony, Compaq, or Accer. Quality wise Compaq (HP ) is doing very well. I have actually not used sony but heard about it so I would like to name it here. Moreover Compaq and accer are tested proven ones and they are really good.?
  18. Really really good advise it is. Thanks for such an informative advise it will be really usefull for many.?
  19. Dear friend of mine I was really fond of Parrots once. I really felt like a father for them when I kept them as my pets. I was having around 7 of them of different breeds. But after being so close to them I was really attatched to them emotionally and their death really hurt me a lot many a days it was like fasting for me. But after that I reallised that it was cruel to them to cut their wings and keep them as your pets. So that feeling led me to stop keeping pets. And now I don't have a single one of them.?
  20. Dear friends actually one of my dear friend is going to start an institute in the month of may 2009 which will be providing free computer courses for students from the lower income groups of the society. He is into the field of social services for the last many years and now he is going to add one more chapter into it and its IT education. But the problem here is the certification. Is there any institute or society who provides free certification on the basis of online exams or some thing like that will you people be able to help him with good intellectual suggestions. He is going to start the Computerised accounting and automation courses in the begining. Will he be able to provide his own certificates and for that is there a need for some registration or so. This institute is going to be started in India. Thanks for your suggestions in advance.
  21. Dear friends I know a lot about Tally and know that it is one of the widely used accounting software in India. What about other softwares used in different parts of the world. Please feel free to give more and more information about this topic.?
  22. Dear friends I think in whole of the world April 1st is being celebrated as fools day. But actually I don't know why. Do you know. Then please share your know how about this day. Moreover I would like to know that how did you spent this years fools day, have you been made a fool or vice versa.?
  23. Its actually automatically restarting that is to say when we start the mobile it shows a blank white screen for a second and then it shut downs automatically.?
  24. My dear friends thank you very much for such an informative discussion on my topic. Thanks.?
  25. So dear I would like to make it clear a bit again. You mean to say that the second time the doc opened the body from the same scar which was previously made on your body that mean to say the same scar was opened again did you ment that means it is not necessary to make one more scar on the body again. Please dear friend please make it clear what I have understood from your post is right or not. By the way thanks for your kind help.?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.