Jump to content
xisto Community

web_designer

Members
  • Content Count

    1,390
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by web_designer

  1. really i couldn't understand you well here, but i will explain some points here: first: the code you posted had nothing to database,it is just javascript to styling the main page, adding frames...ect. second: the number that appears in url, that's correct it is different for each student, because it is the result of (post and get action) in form. when you hit the submit button and you are reading data from database the id of that student will show in the link, or maybe it can be an online form entry and the result will show in link too. but reading data from link?? i never heard about it before. if someone knows that there is such thing, please post here. but, if you want to show student info from database, you should write something like this. assuming, you have a table in the database called studentinfo with three fiels (studentname, birth_date,age) <?phpinclude("config.php"); mysql_pconnect($dbhost, $dbuname, $dbpw); @mysql_select_db("$dbname") or die ("Unable to select database");$query="select * from studentinfo ";$result=mysql_query($query);mysql_close();/*Display Results*/$num=mysql_numrows($result);$i=0;while ($i < $num) { $studentname=mysql_result($result,$i,"studentname"); $birth_date=mysql_result($result,$i,"birth_date"); $gender=mysql_result($result,$i,"gender"); $id=mysql_result($result,$i,"id"); ?> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="100%"><p><b>studentname :</b><i><? echo $studentname;?></i></p> <p><b>Birth_date :</b> <i> <?echo $birth_date;?></i></p> <p><b>Gender :</b><i><?echo$gender;?></i></p> </td> </tr></table><? ++$i;}?>
  2. hi Skhumbin, you are welcome here in this forums. in the beginning we all register here for free hosting, but after few days, when you start posting and sharing your ideas and opinions with the others, you will find a friendly community that is ready to help and support any time.
  3. you can use loops and mysql query to call the data from your database. it should be something like this: $stusql ="SELECT * FROM tablename WHERE (here you can write a condition for calling the fields by using id or maybe any other field you want)";$sturesult = mysql_query($stusql);$i =1;While ($sturow =mysql_fetch_assoc($sturesult)) {Echo "here you can specify which fields to be printed";}$i++; but i think you should post your code so that we can help you.
  4. yeah house5180, why did you buy them if you don't know if these dvds are useful or not!but i will assure you THEY ARE, learning songs for children make them more acceptable for a certain language, and even more make them learning a complete phrases without knowing their meanings. gradually, they can speak that language more easily.i will give you an example, i have a little baby girl, and she is so sweet , i used on let her watch a baby show like teletubbies and barney since she was only five months. first she was sitting watching in her baby walker for 10-15 minutes, and i watch the rest of course. after that when she had a year and a half she did nothing but watching these shows. the result is she memorized the songs even she couldn't understand most of the words, and now she is four years old, she can understand what they say in movies. by the way, if English is not your mother language, then this is the most effective way to learn your children how to speak English easily.
  5. good suggestion , i like the idea. most of the websites now do that especially forums, i used to receive many HAPPY BIRTHDAY from many websites, and it really makes me happy, it is something like the world celebrating with you on that day.i want to make another suggestion too. what about adding something in members area, i mean here profile, so that we can sent a HAPPY BIRTHDAY message to other members here. it could be something simple, a birthday cake, a candle or even add a funny face wearing a birthday hat. it will be nice that members can send happy birthday to each others.
  6. i think the name is pretty good and the most important is MAKE THE SITE LOOK MORE PROFESSIONAL. may be you are not noticing that. since, most of you are senior members, but even Xisto is much beautiful and shorter but it doesn't looks profession, unlike the forums here. the first impression i took on this form when i signed up,it is a normal forums offering a free hosting with a name trap, then they are trapping people with the free hosting plan, which most of the other sites do right now. but after a couple of days, i realized it is not, it is a reliable forums with strict rules and helpful and professional members. the first idea passed in my mind, why trap, they can choose something more professional. and they did now, even it is not very common but it is more impressive than trap and refers to what this forum really do, especially the logo of the head, i like it.
  7. great addition truefusion, and about the redirection i wanted to redirect him to the server again but i thin he want's an error message to appear since, it not possible to send an error message buy echo and a redirect header in the same time, because 100% we will get an error message, so i chosen the error message instead of redirection to show the visitor that there is an error happens.
  8. you can use this code for java script, that disable right click on your page but allows copying text by CTRL+C. so if you don't want to avoid everything from being copied. use this code and add that your visitor can copy text by using ctrl+c in the alert message (var message="Function Disabled!" , or you can change it to whatever you want. you can put it after BODY tag in your page <script language=JavaScript><!--//Disable right mouse click Script//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive//For full source code, visit dynamicdrive.com/var/ message="Function Disabled!";///////////////////////////////////function clickIE4(){if (event.button==2){alert(message);return false;}}function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(message);return false;}}}if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;}document.oncontextmenu=new Function("alert(message);return false")// --> </script>also, you can always add a water mark to your images by any graphic program, or set a transperancy by CSS, for example you can make your image looks by default transparent, but when pass the mouse over it it will show without transparency, i did that to my social bookmarks in my website, you can take a look on them, and i will show you how. or you can check this link, i found it by accident when i was searching the net http://forums.xisto.com/no_longer_exists/ good luck.
  9. great work gwizz, i like it a lot. especially "Judelene's request" and "Love Letter" even it looks like a death letter than a love letter so impressive.photoshop is not only putting some photo, colors and brushes. you should first have the imagination to choose colors, making a design and put your own touch. and that's what you did, keep on the good working.
  10. oh, thanks god it s a legal email, i keep crossing my fingers for not being some hacking thing. but there is a point should be cleared here, isn't better for server choosing a better name than NOBODY, what is this? isn't there a name less confusion?any way, thank you truefusion for the explanation. i am appreciated.
  11. perfect solution nirvaman, but i will add this to your php file, to check if the folder is exist or not <?php$dir_name = $_REQUEST['dir_name'];if (is_dir($dir_name)) {header('Location: http://freedomaindot.com/'.$dir_name.'');}else {echo "Directory not found";} ?>
  12. oh my god, it is really a long thread, even i couldn't follow most of them but i read most of you said sky, and i think you want a solution to your problem. i will try my best and give you two of them. depending on two facts that: either there is really a demon that possessed you, the solution is too simple. FAITH IN GOD, if you don't have a faith or don't know how, just prepare your self step by step to create that FAITH inside you. you can't say i am faithful and be a one, but you can go to Church regularly, or better go every Sunday, read the holy book at least once a day, wear a Cross always.another way, visit a psychologist, and talk to him, tell him everything. be sure i am not saying that you are insane or something. but i took a psychology class in college and read about people hearing someone talking to them and later discovered they have a Schizophrenia. by the way, Schizophrenic person is a normal person can do anything in his life even married as ling as he take his medicine. this medicine will arrange his life and avoid him from getting worse and finally he will get ride of that disease. yes Schizophrenia is just a DISEASE like any other disease that person can suffer. so be strong and FACE YOUR FEARS. please notice, by giving you these solution that means i believe you. so DO SOMETHING and never believe in that voice. either it is true or not you are the one who will make it true.
  13. hi trappers, i received this message in my yahoo email from NOBODY i received this letter twice, in different dates. each one after i installed wordpress in my cpanal in my new domain. thanks god, i deleted both of them and installed it after that. but this time i installed it manually, so, i didn't have fantastico.txt this time. i submit a ticket to xisto about this letter and they replied me they don't know anything about this letter. and they didn't sent it. so, if wasn't them then who knows these kind of information, what do you think trappers? another question if i deleted this file fantastico.txt now (after installing wordpress manually) is this will affect my website or not?? thanks in advance.
  14. yeah, that's right sky. it looks weird with the spaces. that's because i wrote it first in word document. also, it is one of my habit, leaving wide spaces between lines either in writing or in codes so i can separate information and making them more clear.
  15. there are always new brushes you can download. in fact, every time, i want to make a new design i do a long and boring search to find a new brush that i could use. i do like using brushes it gives a special touch to your design. glade you like it.
  16. i did some research on the net and read the components of the book it is really useful, and i found this useful link to download the ebook, i hope you will find it useful Notice from saint-michael: no download links
  17. that is right rigaudon, but i get enough of errors the past few weeks, and i don't want to mess my code especially i am using worpress platform which means that a simple php code may not be compatible with the other files which brings more errors. therefore using plugins are easier to use, if you don't like it just remove it in one click. thanks for replying.
  18. thanks saint_michael for sharing, a few days ago i was searching on the net about portfolio, i found out that the most attractive portfolio websites are using jquery. after reading some codes and check how it works, it is really a beautiful thing to learn especially who used to java script. it will be a great addition for any web developer.
  19. ah, their songs are unbelievable, you just can't walk away from them. i made a folder of their greatest hits which i love most. "i want it that way", "don't want you back", "drowning", "more than that", "show me the meaning of being lonely", "all i have to give", "as long as you love me", "how did i fall in love with you","get another boy friend" and "not for me"it is really disappointing how good bad separated and everything ends, like "5ive", i love them too. "westlife" and "NSYNC"...ect. even they continue singing alone but it is never be the same as singing together.
  20. BackStreet Boys, my greatest band ever, if anyone didn't here about them here is the link of their site http://www.backstreetboys.com/ or http://forums.xisto.com/no_longer_exists/ i really think they are the greatest band. because they stick together for 16 years together. the band consist five members (A.J. Mclean, Howie Dorough, Brian Littrell, Nick Carter and Kevin Richardson). unfortunately, Kevin Richardson left the band in 2006. but the rest stay together till now. i listen to this band since 1998, and believe they are shining day after day their music vary from POP, ROCK, adult contemporary AC and rhythem and blues R&B. so, what do you think trappers, anyone here interesting in BSB, or it is just me
  21. thanks mahesh for you suggestion, it looks good one.but unfortunenatly this counter using widget and i don't. i use drect code in my sidebar, even it is more harder but it's fun. the bad thing that there are always new plugins and features for widget. any way, thanks.
  22. 1- Open adobe photoshop cs3> create a new photoshop document from file> new> and add these values Width: 700 px Height: 200 px Resolution: 72 px Color mode: RGB color 8bit Background content: transparent 2- add a new layer from layer> new> layer>name it background> from (set foreground color) in toolbox and set the color code to (#403e3e)> from (paint bucket tool) add the color to the document, now you should have something like this: 3- download this brush (smoke_brush), you can download it from here and install it https://myphotoshopbrushes.com/brushes/id/220/ add a new layer from layer> new> layer>name it smoke> pick a color (pure cyan) from switchers using (eyedropper tool) in toolbox> use (brush tool) from toolbox> choose smoke brush 800 and draw the shape that you want, you can use your imagination and draw whatever you want and not do same as mine, if you want to have the same shape I did just one click on the document and you will get the same design, you will have something like this: 4- use (horizontal type tool) in toolbox to write your website header> use these values (here we don't need to add a new layer, using the horizontal type tool will create a new layer by default): font family: ghostwriter font size: 48 pt font color: #ffffff for font family you can use whatever you want, or you can download this font. Now, let's add some shadow to our website name, layer> layer style> drop shadow> set these values Distance 6 Spread 12 Size 6 Now you should have something like this. 5- download this brush (retro240) from the same site before, install it> add a new layer from layer> new> layer>name it symbol> pick a color (white) from switchers using (eyedropper tool) in toolbox> use (brush tool) from toolbox> pick retro brush 162> also use your imagination to draw a random symbol, usually I don't concentrate on the area around my website name to keep it clear and showy, this how the header suppose to look like. 6- add a new layer from layer> new> layer>name it marquee> use (rectangular marquee too)> draw a marquee inside the document ( like border)> right click inside the marquee and choose feather> set it to 5 px> right click again and choose stroke> set these values width: 3px color: #403e3e location: inside blending mode: hue opacity: 100% that's it, your new website header is complete. The result will be like this: to see it in full size, this is the link http://forums.xisto.com/no_longer_exists/404.png
  23. hi trappers, this time i need a newsletter for my website. but it should be for wordpress, and not for widgets because i don't use widgets in my sidebar. it will be better if i can editable, and using light box.i already added a one but it wasn't suitable, it takes readers to a separate page to subscribe which it doesn't look good at all. now, i am trying a new one (mailpress) which is a wordpress plugin but till now i am not satisfy yet.if you can you suggest me another newsletter with the properties i talked about before, i will be appreciating.
  24. if i was you anwiii, i will still searching till i know who is he. and if i can know him. then, i will not even talk to him or going to court. simply i will send him CHERNOBYL VIRUS ;)i am just kidding, but i think it is fair but illegal. i wonder why there is no strict rules about hacking, or better say attacking individuals by hackers, but that not the same if a hacker attack a big company.
  25. hay anwiii, i am really feel sorry for your loose. i know how loosing important data is a big thing to deal with. it happened to me once a few years ago. i hope you can collect them again. but it's strange you are not getting a copy from them on your personal pc since these folders are really valuable. you should done that before, any way, good job that you can get back most of your accounts. but i am still wondering why is someone do this to you, it is obvious that it is not a normal hacker looking for bank credits or somethings like these. it is someone who knows you very well or at least know what you are doing on the net and he hacked you in purpose to make your job stops. a few weeks ago i couldn't open my yahoo account either but i get it back through the alternate e mail but that hacker didn't do anything in my account because he is a normal hacker looking for a useful things to him but in your case that hacker didn't do that, he searched for things important to you not to him and deleted them. even he bothered himself and open your others accounts and stopped them. any way, i did a quick search on the net on how to recover files in an email yahoo. some said this can be done only after 24 hours by a rollback your mailbox, check this link https://www.techwalla.com/articles/how-to-retrieve-email-when-deleted-from-trash this link gives a tool to recover an emails file only if you opened then in your pc, it will be recovered but as html file. this good than nothing i guess. http://forums.xisto.com/no_longer_exists/ this link is for a software do the same too http://forums.xisto.com/no_longer_exists/ good luck, i hope i helped you a bite.
×
×
  • 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.