Jump to content
xisto Community

adly3000

Members
  • Content Count

    59
  • Joined

  • Last visited

Everything posted by adly3000

  1. thanks for that great advice. it will really keep a lot of time.i am hosted for about 3 years on a various of hosts and it's first time to know that way of upload. thanks again
  2. KuBi; i downloaded the skin and replaced all the files through my ftp, and also add more skins. thanks for your help you can visit my at http://forums.xisto.com/no_longer_exists/
  3. 1- go to http://download.cnet.com/windows/ and downlod FlashFXP it's a FTP program which will allow you to upload your files to your Xisto.com site.(i use it currently) 2- install FlashFXP. 3- try to turn off your firwall. 4- insert your data in the FlashFXP, mine are: * in Server or URL (text box): adly3000.trap17.com * in User Name: my ftp user name. * in Password : my ftp password. P.S you should have you ftp data sent on your email while signing up in Xisto.com, so find them on your email.
  4. adly3000

    Asp Or Php

    PHP is free and this means so it's too east to be hosted. you can also find alot of tutorails about php.if you search google for php you may find over 6 millions sites.also, php has a great combatibility with MySQL which also free.so ithink php is the best.
  5. is there a css code to change the background of that select or of its scroller?
  6. i want to upgrade my hosting but i don't know my credits it displays HOSTING CREDITS : 3.97 DAYS.i don't understand 3.97 days means how much credits?!!!!!
  7. good tutorials. i will use it later, but ithinkif you edit some change it would be better.
  8. i'd like to make oscommerce work with phpbb.imean that any person register to phpbb is automatically regitered to oscommerce and vice versa.if you have any advice or idea that may help plz send it.(any help would be appricated)
  9. thanks for this great tutorials, but how can i make this animated?!
  10. wow it's a good effect but not a real 100% cartoon. thanks man
  11. please any help would be appricated. help me.any suggestions!!!
  12. i tried to install php in fantastico but i had a problem when i do to http://forums.xisto.com/no_longer_exists/ [/font]where i intalled my php forum.i got the following problem: the subsilver config file could not be found. Notice from KuBi: Erm, this is the "Suggestion" Forum, this is a support issue, belongs in the "Hosted Members Area" Moved. Verbal Warning.
  13. in my crontab command i wrote: GET /home/adly3000/tmp/mkbackup.sh
  14. i'd like to make an automated database backup as following: 1- i would like to optimize my databse's tables. 2- I would like to remove any existing backup tarfile. 3- I dump the database to a /tmp file. 4- I tar the database dump and then delete it. i wrote the following shell: #!/bin/shrm -rf /tmp/mybackup.sql.tgzmysqldump -uroot -pmypass --opt mybackup > /tmp/mybackup.sql.backupcd /tmp/tar -zcvf mybackup.sql.tgz mybackup.sql.backuprm -rf /tmp/mybackup.sql.backup
  15. sorry my demands needs javascript in code, here is a part of my code: $pollAnswers .= "<form name=\"poll" . $pollid . "\" method=\"post\">\n"; $pollAnswers .= "<table width=\"100%\" dir=\"rtl\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"" . $pollbgcolor . "\">\n"; $num_results2 = mysql_num_rows($result2); if ($num_results2 > 0) { while ($row2 = mysql_fetch_array($result2)) { $pollAnswers .= "<tr>\n"; $pollAnswers .= "<td width=\"5\" align=\"center\"><input type=\"radio\" name=\"sel\" value=\"" . $row2["id"] . "\" onClick=\"document.poll" . $pollid . ".hsel.value='" . $row2["id"] . "';\"></td>\n"; $pollAnswers .= "<td width=\"100%\" align=\"right\" nowrap><font face=\"" . $pollfontface . "\" size=\"" . $pollfontsize . "\" color=\"" . $pollfontcolor . "\" style=\"MARGIN-RIGHT: 5px; MARGIN-LEFT: 0px\">" . $row2["Choice"] . "</font></td>\n"; $pollAnswers .= "</tr>\n"; } $pollAnswers .= "<tr>\n"; $pollAnswers .= "<td height=\"5\" colspan=\"2\" nowrap><spacer type=\"vertical\" height=\"5\"></td>\n"; $pollAnswers .= "</tr>\n"; $pollAnswers .= "<tr>\n"; $pollAnswers .= "<td colspan=\"2\">\n"; $pollAnswers .= "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"" . $polltfooterbgcolor . "\">\n"; $pollAnswers .= "<tr>\n"; $pollAnswers .= "<td width=\"50%\" align=\"center\"><input type=\"button\" name=\"submit\" value=\"submit\" onClick=\"openVote('$pollid',document.poll" . $pollid . ".hsel.value)\"></td>\n"; $pollAnswers .= "<td width=\"50%\" align=\"center\"><a href=\"javascript: openResult('$pollid')\"><font face=\"" . $polltfooterfontface . "\" size=\"" . $polltfooterfontsize . "\" color=\"" . $polltfooterfontcolor . "\">view results</font></a></td>\n"; $pollAnswers .= "</tr>\n"; $pollAnswers .= "</table>\n"; $pollAnswers .= "</td>\n"; $pollAnswers .= "</tr>\n"; } $pollAnswers .= "</table>\n"; $pollAnswers .= "<input type=\"hidden\" name=\"hsel\" value=\"\">\n"; $pollAnswers .= "</form>\n";
  16. i think this may help you: <?$hostname = "localhost";$database = "yourdatase";$username = "user";$password = "pass";@ $conn = mysql_pconnect($hostname, $username, $password);if(!$conn){ echo "ERROR: Cannot connect to database. Please try again later!"; exit;}//select the database$db = mysql_select_db($database);if(!$db){ echo "ERROR: Cannot select database. Please try again later!"; exit;}?>
  17. DogEater008: yes every hosting provider have a control panel, but it's not always CPanel. like Yahoo which provide yahoo builder, i tried it.but it a mess.it's enough to say that there is no fantastico in it, while some providers provide you fantastico with 48 script.you should know fantasico is not the same, it always differs in its contained scripts amount and there versions.sometime when installing a script using fantasico.. it doesn't work as well..because some hosting providers forget to see the script requirements. like oscommerce which require register_globals to be on.alot of hosting providers make it of in the php installtion so it does not work.so you should install your scripts manually.and you can always upload the latest version of any script, even it is not available on the fantastico.
  18. $_post and $_get recieves the data entered in the last page which contains the form, but what do you have to do if you need it later?!i think using $_session is better?
  19. thanks all;kvkv i understand your words.u mean i should pass the selectd checkbox to the url then identify it by $_request in php!!is that what do you mean?
  20. csscreator.com is a cool site thanks Lozbo for refering it.
  21. i am designing a poll in which i use javascript, and i need to pass the selected answer in my poll to php variables so how can i do that, any help will be appricated
  22. i think that registering a session variables is easier, you can save the entered data from the user into a session variable then in any page you should write: session_start();then all the session variable will be defined.
  23. i wish if the admin change the forum page to make the ads on the right on left side of the forum(i.e: in a frame) i think this makes it looks better and easier to all users, sorry too say that the current view is not good, nor handsom. the page is croweded with that ads and there colors elminates the beauty of the page appearance. i wish also to see a link to the main forum page: i.e main forums also one more think is to make available is to allow the topic editor to edit his post instead of adding a new reply to add a forgetten word. thanks; Notice from serverph: merged posts.
  24. i used cashfiesta for 2 months i think the starting rate is too too small.my rate is .006 lol it makes 1 dollar every 3 hours. no real money.i think it's all a .......
  25. i agree that dreamweaver is the best web pages editor, and it's also one of the best developing programs,i also use Zend, i recommend zend to any developer.
×
×
  • 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.