Jump to content
xisto Community

khalilov

Members
  • Content Count

    281
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by khalilov

  1. The reason i don't use quotes is because i am using php echo "<tr><td colspan="4">..</td></tr>"; That will start generating erros =) maybe i'll use ' instead,as for small letters i'll modify it =).
  2. khalilov

    Changes

    I just got hosted and i am everything is working fine, but i got this in one of the pages: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/khalilov/public_html/economy.php:4) in /home/khalilov/public_html/topview.php on line 9 I am used include inside a php file, the file i included had session_start() and so did the main file i used include in, is that a problem? if not whats the reason of this error?
  3. I used colspan in a table along with center in CSS code is: .boldtable1 {position:absolute;top:217px;left:250px;font-family:sans-serif;font-size:12pt;color:yellow;background-color:black;}.boldtable1 TD, .boldtable1 TH{font-family:sans-serif;font-size:8pt;width=162px;color:yellow;background-color:black;text-align:center;vertical-align:middle;}I use in table ..<TD colspan=4>...</TD>The text becomes centered as if no cells were merged, there is merging of cells but the text is centered where the first cell was.
  4. I was told that since Xisto is a free hosting service and people prefer to post in forums more than paying money to keep there acounts. And for that reason the purchase credits options is no longer available When you enter purchase credits you get What I am suggesting is to bring back the ability to purchase credits but with extra options. 1-You can purchase for others. 2-You don't need to be registered to purchase for others. 3-Make scripts like paypal when purchasing (extremely helpful for game sites). Its common knowledge that with every post made here the things you can discuss gets smaller and smaller, and there are many people who are finding it hard to maintain their credit count and are forced to go to paid hosts. This can be solved by making it possible for these people to make links in there websites like make a donation. If that is clicked the user is directed to a page where he purchases credits for the owner the site. Also the owner can make side scripts that run when the purchase is done, like add resources or increase vip days. This will help alot, helps the site owners to maintain a steady flow of credits assuming they have a good site, they might even go for that 280 credits .com deal, and it helps Xisto by bringing in money. I dunno if Xisto is using this to make money or just as a project to offer service, but some money won't be any harm. Finally the one making the purchase will get what he wants assuming its a game or he justs feels good because he donated for a website. So its a win-win-win situation, this might need some improvement, but i'd like to see this happen. Especially since i live in a 3rd world country that paypal doesn't deal with. So it'd be pretty hard for me to make money online, but i can still use possible money to improve my site.
  5. it did=), iam gona make a suggestion about the credit thing
  6. if i need to activate at Xisto.com/manage i get first i want my site to be .astahost not .trap17, since .astahost sounds more professional can someone explain the N1 server thing, how do i do it? btw when i enter purchase credits i get whats that O_O
  7. Nah its simple, all i want is a PHP script to automaticly run every 30 minutes.My site is text based war game, so every 30minutes you gain resources or battles are engaged or so
  8. I know =)its just there are some things i need Xisto to do in my site, some cron job or somethin lol people keep telling me its a cron jobXD
  9. I made my application about 3 weeks ago on 2nd September 2008 - 07:43 PM.I know it takes time but i hope it gets done soon =)
  10. I use both tables and CSS, i customise the table with CSS. Creating a tag for every table cell isn't good you know , Cuz thats what i have now XD
  11. Oh, so it only affects the first time they open the sight. After that it'd be cached, I can manage with it for now i think.
  12. Iam using a CSS file of 23+KB size, thats cuz i am not using tables XD, i am gona work on that and replace everything with tablesbut i still have alot of things to work on my sight. My question, will this cause any performance issues when people view my sight?
  13. Does this mean users using firefox and IE <7 opening my sight will recieve errors? if so how can i make it work for everyone
  14. Whenever i enter purchase credits i get this 404 : Not FoundThe server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable. does any one else get this?
  15. It turns out i was missing an ID like turbopowerdmaxs. said thx =) also var farm = document.getElementById('farm').getAttribute("value");var lumbermill = document.getElementById('lumbermill').getAttribute("value");var ironmine = document.getElementById('ironmine').getAttribute("value");var stonemine = document.getElementById('stonemine').getAttribute("value");var monument = document.getElementById('monument').getAttribute("value");var queryString = "?farm=" + farm + "&lumbermill=" + lumbermill + "&ironmine=" + ironmine + "&stonemine=" + stonemine + "&monument=" + monument;// alert("queryString = " + queryString);That helped too , you saved me a question, thx TavoxPeru =)
  16. Iam using ajax and iam getting the hang of it. var farm = document.getElementById('farm').value;var lumbermill = document.getElementById('lumbermill').value;var ironmine = document.getElementById('ironmine').value;var stonemine = document.getElementById('stonemine').value;var monument = document.getElementById('monument').value; var queryString = "?farm=" + farm + "&lumbermill=" + lumbermill + "&ironmine=" + ironmine + "&stonemine=" + stonemine + "&monument=" + monument; These don't seem to work, they stop my script from working. Is there anyway i can get the values from the input boxes having these ids without hitting submit? I've seen it done on other sites
  17. the line-height will do ,thanks =)
  18. I think the add part only applys if you use tikilink or something, meaning adds are put on your website if you agree with it. In return an add for your site is added also on other sites.
  19. khalilov

    Php To Java

    Hmm.. i figured out part of the problem <html><body><script type="text/javascript"><?php$string="5";echo "var my_var ='".$string."'"; // I should have added the "'" for some reason?>document.write(my_var)</script></body></html> However when i put this: <html><body><script type="text/javascript"><?php $x=5;echo "var x='".$x."'";$string="5";echo "var my_var ='".$string."'";?>document.write(x)document.write(my_var)</script></body></html>It seems when i start operating with two variables, nothing shows. Page source <html><body><script type="text/javascript">var x='5'<br>var my_var ='5'document.write(x)document.write(my_var)</script></body></html>I only need to pass one variable atm, but in the future i might need to pass out more, anyone can tell me why having more than one variable causes issues?
  20. I read about this on Xisto before but i lost the forum, can someone direct me please>.>Anyways whats the catch. The only condition i read is that my sight should have atleast 25 clicks per 90 days or somethin. But that sounds too good to be true for a free domain. Anything i missed? I remember reading about clicks or views or so.
  21. I've nevered played WOW before, but with all the fus about it maybe i should try it .Whats the computer power, colour VGA and internet speed needed for it to work perfectly.
  22. Every creation has a creator, the world didn't just pop out of nowhere. Energy can be transformed not created. So there had to be something that started the world. There are many theories about how the world started. The most common one is the big bang which says that every thing was inside a small sphere with infinite desnsity which exploded and created everything. Where did the sphere come from?Also people researching the big bang theory say that if any thing was a bit different, whether it was the mass released or timing or speed of the moving matter , the world wouldn't have been created. If the mass was slower everything would have collapsed back to the sphere. If it were faster , planets and galaxies would not have been created.Thats the world, as for life , i don't know any chemical or scientific explanation that says X + Y--->Life I am not discussing any certain religiousity here, I am just saying that God existing makes sense, cuz if God didn't exist, where did we come from?Some might say where did God come from? well i can't anwser that. Because if i said God came from X, then X would become God because X can take back God the same way it brought it. Thats why there are religions, to explain what we can't understand and to give many of us a reason to wake up everyday (belief in a better place after death). If there were no religiousities or believes in God. Every one who approaches age of death would either freak out and go on a killing spree or lock him self up and live in sadness. A little of topic here:)Any way, i believe God exists because of both religious believes and scientific explanations.
  23. khalilov

    Php To Java

    Hmm... what i want to pass is a number form database, lets say i got this number and its $x, how do i pass it?
  24. khalilov

    Php To Java

    How do you pass a variable from PHP to JAVA? i tried var x= <?php echo $variable; ?>it doesn't work
  25. i like how some sites check the username you inputed and tells you if its not available without loading. Like hotmail when trying to make an email. How do you do that?
×
×
  • 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.