Jump to content
xisto Community

mrdee

Members
  • Content Count

    975
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mrdee

  1. Hi, I have a MySQL database with the following fields: ID (speaks for itself), _sfm_form_submision_time_ (time form was submitted), _sfm_visitor_ip_ (visitor IP address), Name (Visitor's Name), Town (visitor's loacation), Emaiil (visitor's Email), Message (Text block to leave a message up to 500 chars). (And I now see I made an error in a field name, by using Emaiil instead of Email). However, I would like to display the submitted data, only for the fields Name, town and message in a table on my website. I have a bit of code, but then get hopelessly stuck. I would like the display to look something like the attached screenshot. I already have a bit of code, but then I get hopelessly stuck. This is what I have: <?php$username="mrdee";$password="**********";$database="mrdee_reloader";mysql_connect(localhost,$username,$password);@mysql_select_db($database) or die( "Unable to select database");mysql_query($query);mysql_close();$query="SELECT * FROM rouw";$result=mysql_query($query);$num=mysql_numrows($result);$i=0;while ($i < $num) {$Name=mysql_result($result,$i,"Name");$Town=mysql_result($result,$i,"Town");$Emaiil=mysql_result($result,$i,"Emaiil");$i++;};?>(Not sure whether that is all 100% correct).But then, I get hopelessly stuck with the code to put those data in a table as in the screenshot below. Anyone who could help, please? Also, I have tha page with the form to enter the data, and I would like the display table to appear below the form. The code for that page is as follows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html lang="en"> <head> <meta charset="utf-8"> <meta name="generator" content="CoffeeCup HTML Editor (https://coffeecup.com/)"> <meta name="created" content="Wed, 09 Feb 2011 09:55:46 GMT"> <meta name="description" content=""> <meta name="keywords" content=""> <title></title> <!--[if IE]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;<html xmlns="http://www.w3.org/1999/xhtml/;<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title></head><body><div align="center"><h1>Betuig Uw deelneming - Express your sympathy</h1>De dood van een jonge, moedige vrouw kan niemand onberoerd laten.<br><br />Daarom heb ik, na het insturen van een bericht door een bezoeker, besloten hier een rouwregister te plaatsen.<br>Dit zal, bij voldoende invoer, overgemaakt worden aan de nabestaanden van <i>Marie-Rose Morel</i>.<br>Alle velden zijn verplicht, Uw e-postadres, echter, dient enkel om U een bevestiging te sturen, en wordt noch getoond, noch ergens anders voor gebruikt.<br>Alvast hartelijk bedankt.<br>De webmeester.<br /><br />The death of a young, brave woman cannot leave anyone untouched.<br><br />That is why I, after a visitor sent a message of sympathy, have decided to put a condoleance register here.<br>I will, if there is enough input, pass it on to <i>Marie-Rose Morel</i>'s loved ones.<br>All fields are required, your e-mail address, however, is only needed to send you a confirmation, it will not be shown, nor used for anything else.<br>Thank you very much in advance.<br>The webmaster.<br /><br /><iframe src='vlaanderen-flanders.org.uk/forms/rouw/rouw.php?sfm_from_iframe=1&%2339; frameborder='1' width='45%' height='640' allowtransparency='true'></iframe></div> <br /><br /></div></body></html></body></html> The "<iframe></iframe>" is the link to display the form, should I now, when I have the full code for formatting the table, use another iframe below it, or should I just put the PHP code below it, or should the code for the display table be written in HTML? Sorry if my questions seem somewhat stupid and/or if my coding is lousy, but I am a COMPLETE novice when it comes to PHP, and I would desperately love to learn more.. Any help will be much appreciated. PS. In the mean time I have corrected the field name error from 'Emaiil' to the correct 'Email'.
  2. Well, maybe I caused a bit of browscism for nothing maybe. In my HTML editor (Coffeecup), when you make a new page, you have a choice of which opening tag (hope that's the right term) you can use, there is a whole list, such as HTML5 (<Doctype html>), html 4.01 transitional, html 4.01 strict, xhtml 1.o transitional (default), SVG, MathML, HTML+MathML etc. etc., the list goes on and on. I noticed that, when I used the wrong DOCTYPE (that's the right word), things did not display properly in IE9. Of course, with the HTML standards changing, and some browsers supporting it better than others, and given the fact that the Doctype makes a difference too, it is still somewhat confusing to me, and I need to do quite a bit of experimenting. I also noticed that, sometimes the browsers shows a certain feature, only to magically stop showing it without making any changes ti the code, then to appear again like it should be. That is what confused me about the "float" function, as, sometimes, it did actually centre my box. So, should I just use <div align="center></div> then? Oh, and finally, looking at your signature, are you a musician? If you are, we might even have much more to discuss here. Anyway, thanks again for all your help so far.
  3. I think I have sussed out what the problem in the above post is.It is simply that my newsletter software and HTML editor both show their preview based upon that browser from that company worth billions, the company that always know better.My e-mail client (Windows Live Mail, made by... yes, you guessed it) is of course no different.I have even (only for testing purposes, mind you) downloaded the beta of version 9 of that almighty browser, the one that claims it can now handle CSS3 (it even mentions rounded corners especially), it also claims to support HTML5 now.To be quite honest, I have not seen much of what they claim.I even tried to do what they advise: ie. not to use a vendor name in front of your "border-radius" line, so, instead of coding "-moz-border-radius: 30px;" or "-webkit-border-radius: 30px"", you are just supposed to put in "border-radius: 30px;".Tried that, did not make the slightest bit of difference.It also appeared that in the past, you used to have to preceed the code with "-ms", so "-ms-border-radius: 30px;".Tried that, guess what, no luck, of course.The browser version might still be in beta stage, but it already claims to support CSS5, well, I can't see it, or maybe I am using a different kind of PC.Note to the mods: this post has been written a few minutes ago, and I got the message it will need to be approved first, please ignore it, it happened because I didn't realise I was not signed in when I posted.Thank you.
  4. You have definitely been very helpful, Baniboy. Of course, at my level, stupid things like defining the same thing twice are to be expected. One thing does surprise me, though: as you can see from the screenshot, I had my box nicely centered. When I adjusted HEIGHT from 500 to auto, it had all of a sudden jumped to the left. I also tried to add float: left; but that does not seem to make any difference. I shall post my latest version of the HTML again, hoping you might be able to see where I went wrong. But, in the mean time, thank you ever so much for the help you have already given me. I have really learned a lot.
  5. You are right, rvalkass, that is the one I was looking for.However, IIRC, I had that as a free font.But, never mind.I needed it desperately and now I have it back.Thank you all for your replies.
  6. Gentlemen, this has really helped me so much. Thank you so much for putting up with my probably idiotic questions and having the patience for posting such accurate and detailed replies. This has really made so much difference, I have now managed to code a centred box with rounded corners with text inside it. Maybe my coding still looks clumsy, but at least I am on my way to achieving what I was looking for. I have one more question now: I shall post the code below, like I said, I have made a box with rounded corners and text in it, the only thing that bothers me slightly is that it has "preset" sizes, which is ok for me where the width is concerned, but what I would like is for the box to have a height that grows or shrinks as more or less text is put into it. So, below is the HTML code, like I said, it might still look clumsy and unstructured, but at least it works. I hope there is enough information to help you help me. Here it goes, hope you can see a way to finish off the trouble I have already been through. And, once again, thank you ever so much. And there is also a screenshot to show what it looks like.
  7. AbduRahmanL, you have made my day!I regularly eat home made couscous (although more Middle Eastern style, recipe will follow).However, my only problem was: the couscous spices.Here in England they are not easy to find, maybe in the Arab shops in London, but they will cost an arm and a leg there.Sometimes my wife got them from an annual French market they hold in my town, they sometimes sold them due to the fact a lot of North Africans live in France.But now I have seen your spice mix, I will try that out, they are all things I have in my cupboard and they cost next to nothing.I too, use chicken thighs, but from the end of this month I shall be trying it out using Merguez (which I shall be making myself) and spicy lamb mince meatballs.(For the people who don't know, Merguez are spicy lamb sausages, they are red in colour, and especially popular in North Africa, eg. Morocco, Algeria, Tunisia and even Egypt).Since I am not an Arab, it is no problem trying couscous out with pork, although you will usually never find any Arabic food containing pork, so I haven't tried it yet.Now, for my version of couscous (An Iraqi friend of mine taught me):the main difference is that I use a pan and steamer, so, I cook the meat and vegetables in the pan, and when that is boiling nicely (near the end before serving) the steamer with the couscous goes on top of it, so, rather than being boiled, the couscous is steamed in the steam of meat and vegetables.I do prepare the couscous prior to steaming by adding a tiny bit of lightly salted water and kneading it together a bit, so it gets firm and sticks together a bit, to prevent it disappearing down the steamer.Now for the rest:heat some oil, and then add a chopped onion to it, add the chicken thighs and let them go brown.Add chicken stock, let simmer for a while, and then add the rest of the vegetables: sliced courgette, a quartered potato and 1 tin of chopped tomatoes.Also add the couscous spices if you have them, or the spices our friend lists in his opening post.One more important thing: add the seeds of a dried lime or use a quartered lemon, washed but not peeled.(You don't have to et the lemon when it is ready (I do), but it makes so much difference to the taste).Let everything come to the boil and then let simmer for about 30 minutes, and about 10-15 minutes before serving, put the couscous on top.(If you have no steamer, you can, of course, do your couscous like AbduRahmanL does it.Well worth a try, I would say, as it is really yummy.And I will certainly AbduRahmanL's couscous a try too.Let me know how you go, please.
  8. Thank you for your reply, Kobra500.However, I'm afraid that is not the right font, the "Pioneer" font, as well as the "Ben Pioneer" font both look similar, but they do not have thw white shadow behind it.But thank you anyway.
  9. Hi everyone, I am ooking for the name of a certain font, which I use on my website (unfortunately, only in graphics files, so they would be visible by everyone). Due to a change to a new machine, I lost the font, and I have looked everywhere, Identifont, Whatthefont, myfonts.com, and I have also spent hours to try and locate the correct font, with no success. What makes it extremely difficult to search is the fact that I am not sure what search criteria to use, there are quite a few categories the font could come under. I was wondering if anyone would recognise this particular font: If anyone recognises the name of the font and knows the name, please let me know, as I am so desperate to find it again so I can make further title graphics for my website. All help will be very much appreciated.
  10. First of all, thank you for your quick reply, my friends. I appreciate that some email clients do have problems with displaying styles correctly, as do some browsers. At the moment, none of the code I have mentioned has been uploaded to any web space, I have the HTML and CSS stored on my hard drive for testing purposes, and when I open the HTML page in my browers (Firefox, Google Chrome), it works perfectly. As I mentioned in the beginning, Internet Explorer seems to be ignoring a great deal of the CSS, but, that is of course not unusual. (Although, it appears that the upcoming version of Internet Explorer, version 9, will support CSS3). It is a good idea to put the newsletter online, as well as in the email, I have often seen that in newsletter emails where it said "If this newsletter does not display correctly, please click here", where th hyperlink then sent you through to a web site where you could read the newsletter in all its glory. However, there is one thing that might need a bit more clarification (forgive my ignorance if the following question sounds dumb, but I am not an expert, certainly not on CSS): Kobra500 mentions the following line of code: So, would that mean that I can do the following: <HTMLELEMENT style="curvedCorners-finished.css: curved1;>CSS and HTML code here</HTMLELEMENT>? Is that what you mean I could do to let it do the trick? I'll do a bit more experimenting too, but, for the time being, thank you so much for your input so far.
  11. Hello, I found some stylesheets for making tables with rounded corners. Everything seems to work well (except in Internet Explorer, of course, but that is no big surprise) but I have one problem: In the HTML code, within the <head></head> tags, there is obviously a reference to the CSS that goes with the HTML code, and the code looks like this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://forums.xisto.com/no_longer_exists/ xmlns="http://forums.xisto.com/no_longer_exists/ http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title><link href="css/curvedCorners-finished.css" rel="stylesheet" type="text/css" /></head><body>...... (rest of the HTML code) As you can see, the CSS code is not written in the same page, but is called with <link href="css/curvedCorners-finished.css" rel="stylesheet" type="text/css" /> That is fine for using in a webpage, where you have the CSS code in a folder on your server, but what I would like to know is: How can I integrate the CSS code in that same page? The reason I ask is: I am trying to use that code in a newsletter, which I send as a HTML email, so I don't really see how I can refer to that folder, or should I just attach it to the email? I tried the following: I changed <link href="css/curvedCorners-finished.css" rel="stylesheet" type="text/css" />[/quote] to [quote]<style type="text/css" />relevant CSS</style>but when I previewed the page that did not work. So, is there a way of integrating the CSS code into the same page as the HTML, and if so, how do I do that? If not, how can I make the correct style appear in my email? All advice will be very much appreciated.
  12. Just to make something clear:When I say at the end of my post "You won't regret it", I am talking about Xisto's hosting (Or Xisto if you like), not Byethost's.I can only re-iterate what I said at the beginning of my post: where Byethost is concerned, stay well clear.Hope my last sentence did not cause any confusion.
  13. I have been with them too (Free Hosting, that is), and my advice is: Stay well clear.Apart from the fact that they use the very obscure and user-unfriendly Vista Control Panel, they put restrictions on the sorts of files you can upload,when they do that, it is practically impossible to make proper websites, imagine you want to put a video clip or a piece of music on ther (even if you own the copyright), you are not allowed to upload the files.If I remember correctly, even a PDF file came under the banned category.Further, when trying to use their MySQL database, it has restrictions on it as well, I use a very good form creating program,with which you have the option of storing the data sent to the form in a MySQL database, well, sometimes even the simple form would not work, a form with nothing more than Name, Address, Phone Number and Email in it, because the database stopped the script from writing data to it.So, what is the point of having a host where you get a database (or a number of databases, don't remember) which you cannot even use properly most of the time.I also seem to remember that you could not connect to your MySQL database more often than you could.So, unless you want to make a very simple website, and a small one, I would just leave that company as they are.BTW. If you are looking for proper hosting at the right place, why don't you hand your site over to Xisto?I can assure you you won't regret it for a single minute.
  14. Of course I do agree with anwii, to learn a language you also have to able to hear the words so you know how to pronounce them correctly, but, that could indeed be overcome to post some videos or mp3 files with the words, sentences or short stories that are being learned at the time.There is another great resource for that too: it is called the Internet .There are a great deal of sites out ther to which links could be posted for pronunciation purposes, eg. WikiPedia also hosts some pages like that.The reason why I am a bit vague here is because I don't know the URLs of the sites in question from memory, but, if any of the people here need any help, I will be more than happy to look a few things up and post the proper URLs (if and when needed) here.But, obviously, if the people teaching the languages want to make the teaching a bit more personal, sort of, less robotic, they can also shoot their own videos and upload them, or record the words or phrases they are doing in that lesson and post them in their tuition too.For the technophobes: this can even achieved with a simple mobile phone, so, don't think you will have to invest a fortune itn recording or video equipment.Anyway, I still feel it is a great idea, and as I said before, obviously we will all have to come up with some ideas about methodology, resources etc., which is exactly what we are doing now.So, I would say, anyone interested, let your suggestions roll in.Thank you.
  15. I too think this is a brilliant idea. However, things will have to be thought out carefully with regards to how to go about it. What I mean is: there is not much point in working like this: It is, of course, all right to include vocabulary and asking for the meaning of words, but there should be more to it than that. The learning of a language obviously has to include learning some grammar rules, some spelling and other rules of the language. Word lists are obviously an important part of learning a language, but not everything. I think some short pieces should be included for the student to read and try to understand, pieces of text which gradually get longer and gradually increase in difficulty. It would also be good if the teacher gave the student some exercises. But, yes, I think it is a brilliant idea, and if it ever gets off the ground, you can definitely count me in. i would be able to help out with Dutch at any level, and French and German at beginners' level. Would it not be a good idea if we started with compiling a list (either here or start a separate topic for it), with people willing to help, also indicating what language(s) they can do and which level. Why don't we get the ball rolling? Let me know what you think.
  16. I don't believe he means installing OS X onto a non-mac, rather whether his official mac with a Core Duo processor is compatible with Snow Leopard. The answer, meanwhile, is yes. Snow Leopard requires an intel based mac, PowerPC macs are out. That said, a Core Duo is more than capable of running Snow Leopard, but apps will run in 32 bit mode, aside from that, as long as you have enough RAM, you will get pretty good performance, due to the optimisations which have been performed on the code.
  17. Yes, chinu,like k_nitin_r says, your MyCents system is definitely up and running. Just make make some more posts to get up to the 100 mark (it really goes quicker than you think if you make a few good quality posts) and then you will have your first dollar.Then try to add 95 cents credit to that and you are ready to order your logic plan, which gives you everything you need (and more for some people)for top quality hosting.I see k_nitin_r asked the question where your web pages are hosted now, well, if it is a paid host, look at what it offers you, and look at the plans Xisto are giving, and all for virtual money rather than real.Even if you have a free website host, look if you are getting the most out of your MySQL database(s), if you are allowed to upload all the important kinds of files, like .avi, .flv, .mp3 etc.Some hosting companies (especially 'free' ones) do not allow you to upload those kinds of files (just to name a few), so there is a lot you miss out on when you want to put multimedia on your site.Here you can do it all for a measly $1.95 a month, which you accumulate just by posting in the forums.And, furthermore, if you are hosting your website on a paid web host, I can never see it being as cheap as it is here, while giving you all the features you receive here.IIRC, the cehapest hosting I have seen (apart from Xisto) was $2.29 excluding VAT, but only gave you the basics.So, it is well worth thinking about moving your hosting to Xisto once you have enough credit to do so (and believe me, it will not take long to get it, just get posting).But, rest assured, your MyCents meter is running, just keep going.And, welcome to Xisto, by the way.
  18. I would say I learned HTML for the most part by doing it.I remember in 1998, when I got access to the Internet for the first time (still on my good old Atari ST), I could only use it for emailing, BBS systems and reading newsgroups, because the browser software Atari had (called CAB) let you surf the net to some extent, but you had to try and go for mainly text-based websites, as the spec of the Atari was not 100% up to scratch for seeing PC type images, Flash, Java etc. and besides, you had to have a hard drive and a lot of cache and a very appropriate monitor.However, when I saw the things I could see, my interest was immediately roused in the sense of "Hey, i would like to put my own site on there too".Then, at Christmas of the same year, I got my first PC, and I was amazed at the things the Internet had to offer.I don't remember how I had it, but my OS on my first machine was Windows 98, and for some or other reason (did it come as part of Windows or what?) it had Frontpage on it.I started fiddling with Frontpage a bit, and after a few days, my fist website (or, rather, attempt at a website) was born, mainly due to the WYSIWYG and drag-and-drop features in Frontpage.I used to ask people in news groups to rate my site, and also how I could achieve certain things in HTML, and got lots of useful tips from there.However, using Frontpage, one of the regular criticisms I got was "Microsoft always know better, the way you do this is nor standard HTML". ( you will see something later in this post too about the things people posted about Microsoft).Anyway, apart from looking at my site and just changing things through WYSIWYG, i also started looking at the HTML code, and found there was a lot of logic and self explanatory stuff in it.I was, of course, not ye fluent enough in HTML to just start using Notepad or something, i still needed help from WySIWYG features, but having had all the input by newsgroup and forum users, I started moving away from Frontpage, and started using demo/trial versions of other professional packages, and also freeware programs.A combination of the latter, and the things I learned from analysing my code and, once again the input from other people, made me more and more proficient in correcting my HTML code by hand, doing better bit by bit.I then got across a company called "Coffeecup", and they make all sorts of website design software, going from a HTML editor to a form maker, a shopping cart application and much more.I liked their HTML editor from the beginning, maybe not the most professional program under the sun, but, hey ho, I am not a professional website designer either, and it did everything I expected of it.Then, because of the /11 atrocities, the company gave away a free copy of their HTML editor to all demo users, and I have used it ever since, the good thing is, you own it for life, never pay extra for updates, and there is a better version at least every year.I have also tried my hand at Dreamweaver, that program can do practically everything you would expect from a website designing program, but, as it goes, like all Adobe programs are IMVHO, it is incredibly difficult to use and very user unfriendly.So, i have stuck with my Coffeecup, which is now also HTML 5 compatible, however, with a new version of HTML also comes a lot of new learning.Nowadays even, I still check newsgroups, forums and tutorial sites (now far less than I did before, but I still do on occasions) to see how to perform an action using HTML.A word of warning too: with the new standard of HTML 5, over time, some features of HTML 4 will be scrapped, and you will be forced to switch to HTML 5, the only problem with that (at the moment) is that not all browsers support it yet, some not fully, some not at all.And, believe it or not (yes, here we go again), the browser used by most people, Microsoft Internet Explorere, does not seem to suport HTML 5 at all yest, as I noticed a few days ago when I put a simple and short song online, using HTML5, I used a number of browsers, but the only one that would not display my media player nor play my song was..... Internet Explorer.Anyhow, the best advice I can give o people wanting to learn HTML is:use some different browsers, use WYIWYG by all means, but look through your HTML code too, visit newsgroups, forums and tutorial sites, and, like I did, buy some simple books about HTML.I won't say that the sites I made are the bees knees, but, they do the job I want them to do, and, IMHO, they do look rather attractive, without lots of flashy features on them (always remember too much of a good thing is not really that good).And furthermore, like I always hungered for and highly appreciated help from others, I am always willing and ready to help other people.
  19. OK, thank you for the help so far, everyone.I have had a lot of useful input from my fellow forum visitors here.The funny thing is, now that I think I am getting somewhere, it seems the program itself is beginning to play up, it won't run properly anymore.Even support are ignoring my tickets now, well, if that is their attitude, they know what to do with their software.You might argue, "why didn't you try to get an explanation from support to solve your PHP problem?"Well,of course I tried that, but all I got was answers that either were beside the point, or that had completely nothing to do with my questions. An example: whenever I uploaded a quiz, with the option of letting pipe.php display a report, I was told "files could not be uploaded", while the log showed me it could not upload pipe.php.Yet, when I looked via Filezilla, the appropriate folder was there, and the pipe.php script was in it.It alo said to CHMOD the folder to 777 or 755, which it already was (777, tried 755, didn't work either).As a result, when trying to get a report, it said "cannot connect to the server".After putting that question to support, I was asked to send the quiz source file, which I did.Then, I was sent it back (however, they had made modifications, but did not tell me which ones or how), but still no joy.Then they asked for my upload info, which I then reluctantly gave to them, they uploaded the quiz, and it worked, yet, when I tried myself again, same problem.Me back on to support then, where I got, "I'll upload it again and check your new source file, just to see if you're not making the same mistake again".WHAT MISTAKE????I only followed the instructions, uploaded everything as was required, but kept getting an error message, and, if I did make a mistake, why did they not tell me which one then?Then, as I said, all my further support tickets were just ignored.To some people, people are just good to get and use their stuff, but when they need help, it becomes quite another matter.Anyway, I am thinking of ditching that program now, I have found another one,freeware even, it might not look as flashy, but it does the job. The only thing is, the report system works on a Perl script, which I know even less about than PHP.So, I'll probably be roaming the Perl topic now.However, before I do, "is Perl fully supported by Xisto hosting?", also, is Perl not a bit outdated/old fashioned, or is it still fully and actively used?Anyway, thanks for your help everyone, and should there be any update with the original program, I will let you know.
  20. Here are the files from the earlier post in .zip format.I must say that the pipe.php and pip_db.php files are in their raw format as they come with the program, for practical reasons, I could not add the modified files, with the login to my MySQL db to the zip file.But if that does not help, let me know and I'll go further with it.Thanks anyway. reportscore.zip
  21. No idea at all why that could be. Maybe you should check with one of the forum leaders, or maybe send a ticket to Xisto. As far as I can remember (mind you, I have not worked with attachments on these forums a great deal), it seems to work for me to get the attachments to download/open. Or maybe you might have to check your firewall settings. You can also, if you wish to do so, PM me an email address where I can send the files to (They are not big anyway). In the mean time, thank you for your help so far.
  22. Well, I must admit (without trying to be derogatory to anyone) that there have been lots of changes here since the Trap 17 time, and not always for the better.I do remember, quite some time ago, that they apparently had changed the whole MyCents system, but the thing was, it wasn't updating anymore, your credit remained as it was, while they kept saying they were working on it, but the change never seemed to happen.It even happened that I emailed Xisto - Support, and they just added credit to my MyCents system as a gesture of goddwill, as I had told them I had made a number of posts, but thus far never received any credit for them.Now, the MyCents system is up and running again, but it does take somewhat longer than it used to before your credit is updated.Howvever, the main thing I have noticed is: (I don't know whether it is a lot of people have turned their back on the forums or what), whenever you used to post on these forums, it never took long to get a reply, and you used to get quite a few, not only from ordinary members, but also from people like a jlhaslip, SaintMichael, Opaque, BufalloHelp, just to name a few.Now, it has happened that I posted questions here, which just remained unanswered, something which would NEVER have happened in the past.Also, since they encourage you to post as much as you can in order to get your MyCents credits, why do they try to restrict your posting on the other hand?It is not the first time I have seen "You can make 50 more posts here", and don't tell me that is a measure to try and reduce spam.Further, we all make mistakes, and we all forget something from time to time, so, why can't you edit your posts anymore after a certain time?Sometimes something important you forgot to put in your post springs to mind, or you notice a mistake which might have an impact on the context of your posting, but, after a while, there is no more possibility to edit your post.So there clearly has been some change here, and something is obviously not going the way things used to go.Another thing: where is the cosy shoutbox gone, which we used to have at the top of the forum?Don't get me wrong, when I have certain problems I need help with, I will still post them here, also partly because I am in need of my MyCents credits, if only because I am happy with the hosting Xisto provides, and there might be some nostalgia, because of the way things used to go on the good old Trap 17 forums.However, I want to appeal to everyone, can't we all do an effort to try and raise the standards again, and to make Xisto to the same level of fun, friendship and knowledge we used to find on the Trap 17 community?Let us not forget, the hosting Xisto provides is good, and don't say otherwise, their support might be slow, but they do help to solve your problems, and besides, I have rarely needed their help.And then the main point: the price for their hosting is right, where else will you find such generous hosting, no ads, fully working MySQL databases without any restrictions, uploads not restricted, and all paid for by just posting in the forums often enough?Would you people really like to go with other hosting companies, where either, you pay an arm and a leg for hosting not much better that Xisto's, or even free, but where half of the stuff you put in your MySQL databases is not working, or where you are not allowed to put certain file types on your website (eg. no more video clips or songs on the site, even if they are completely your own)?No, I would like to resolve it differently, instead of leaving, why don't we all stick together and try to make Xisto the place Trap 17 once was.I, for one, am always willing to help.
  23. OK then,I can send you a few of the PHP scripts that come with the program.The program also creates an .xml file which is then read back and shown as a result in the program itself.However, the PHP is fully customisable, and all I want to store is the quiztaker's username, number of quizzes taken, and score. I will also upload my display script.Thank you for your help so far. reportscore.php savetodisk.php pipe.php pipe_db.php displayqdateng.php
  24. Yes, I do as a matter of fact. After you have taken the quiz, you get sent to the following place: Quiz Ranking, which shows the ranking of the people who have taken part, with their name, how many quizzes they have taken so far and the total of their score. The only thing I am looking for is the right PHP code so I wouldn't have to do it all by hand. Like I said, my problem has nothing at all to do with Flash or anything whatsoever, I know the PHP scripts in conjunction with the program work, I am only looking for the right code to achieve getting the data into the MySQL database, because I am not a fluent PHP programmer (yet, I am working on it). So, basically, all I want is the PHP code for adding 1 to a number (every time someone takes a quiz, the figure for the number of quizzes they took gets increased by 1), and the code for adding the score of the new quiz to the already existing score (a player had 80 points, takes the new part of the quiz and scores 20, so, that 20 gets added to his previous score, 80, making it 100). So, basically, all I am looking for is a few lines of PHP code, so I can complete the script.
  25. Thanks for your input.The program does keep track of scores, but within its own GUI.That means only the one who made the quiz can read the tables.they also have their own space on the net to display the tables, but there is a charge to use that.You can, hovewer, let the program go to a PHP script to put the results in your own MySQL database.And this is what my question is all about: to get help putting that script together.
×
×
  • 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.