-
Posts
6,906 -
Joined
-
Last visited
-
Days Won
99
Everything posted by ginerjm
-
Where is this WHSIWHG switch? In Chrome? In IE? Here? Edit: Seems that the problem just might be AdFender. I have had it installed for months now and never had a problem before. Just disabled it and quoting and editing work fine now.
-
I suggest making a do and don't section
ginerjm replied to QuickOldCar's topic in PHPFreaks.com Website Feedback
Sorry about above. My browser is giving me problems with this site lately - as reported yesterday. I meant to quote a portion of the above and add a silly comment: I hope you cleaned out the out-of-date info from your browse of the FAQ you mentioned. Have a happy everyone. -
I suggest making a do and don't section
ginerjm replied to QuickOldCar's topic in PHPFreaks.com Website Feedback
-
I suggest making a do and don't section
ginerjm replied to QuickOldCar's topic in PHPFreaks.com Website Feedback
I'm surprised it hasn't been thought of and carried out already. So many people (mods, etc.) repeatedly post the same warnings and suggestions and samples. Items posted in such a place could be easily ref'ed via a title or something instead of re-typing them. -
I opened this up in Chrome and hit f12 which is showing a lot of panes with stuff that means nothing much to me. There are elements in red such as css settings but most of it is blue or black Tried an edit of this post. Console now shows the following (pasted): (underlined)ckeditor.js?nck=fb99e14e49767998a66e3b7a9956074d:142(end_underline) Uncaught TypeError: Cannot read property 'save' of undefined
-
Now I tried to edit the above post. Even tho I was presented with a blank window I typed in a line and saved it and nothing shows up in this forum. Nor did it alter the original post.
-
Disregard my previous. Problem is still with me. Just tried to edit a post in the PHP Help forum and couldn't. Tried to edit my above post and couldn't. When I click on Edit I get the window (basic editor) and see my post for a second and then it blinks out and I'm left with an empty edit window to fill in.
-
Well - as you can see from my edits above, it seems the IE is the only browser that I have that has this problem. Something has changed - something that I didn't do. Apparently M$ has struck again! A christmas present that I didn't see coming. Ok - this is weird. This edit is being done in IE and my previous post of this message did not leave a duplicate on screen. Problem has disappeared suddenly and I didn't do anything.
-
No - he's building an array from the query results so that he can pass it to a function that he copied that builds his option tags. What he should do is eliminate that other function and build his option tags in the fetch loop and forget the middle-man array.
-
I haven't updated it and I have my settings set to NOT do automatic updates. This edit performed using Chrome And this edit performed with Safari
-
Found where you guys moved my post to. Tried to edit my above post and cannot. Tried hitting Refresh and that just sends me back from edit mode to the thread.
-
I've been a member for several years and only just started experiencing this problem. No update to my browser(IE) nor my system that I know of. As I said it just began 3-4 days ago. And hnow come this post no longer shows up in the forum where I posted it? If it was wrongly posted, please advise how to followup with this problem report.
-
Doesn't my signature show up all the time?
-
Turn on PHP error checking (see my sign.) and you'll see a problem. You start out using myslqi functions but then you do a fetch with MySQL. Can't mix the two different interfaces. Stick with mysqlI. Also - remember that php is CASE_SENSITIVE!! You query for 'domains' but then you try and use an index called DOMAINS - which besides being in the wrong case should also be enclosed in quotes. Also your option tags don't have an 'value=' clauses in them.
-
The question was 'are you wanting to run this on your server or on your client?". Perfectly legitimate when you said "when your website is not running", whatever that means. A cron job is certainly a simple and easy way to do what you want. But you didn't answer my question, so I didn't know if a Cron job was even possible since I chose to assume you meant your server was down. What does "website is not running" even mean?
-
Tried to edit the initial post and nothing I added to it shows up - even though it says it was edited by me.
-
Is it just me or is anyone else having problems with the site? When I make a reply to a post and submit it, my post is added but it also appears as an edit window still below my just-posted post. Also - when I try and edit my post the edit window opens up but the text of my post flashes by and does not show. If I re-type the entire post with my edits and save it, the edits do not appear. This has been happening for 3-4 days now.
-
Another thing that wastes people's time is when posters post code that they didn't actually run. The code you posted here could not possibly have run since your query string is not in quotes. Please don't re-type code to post. Instead use copy/paste methods to ensure that the code you are posting is the same code you ran
-
Instead of just posting the same code again here and asking a new question on how to use it, may I suggest you do some actual learning? Either stop using arrays or learn how to access them. We helped you with your previous post - not going to do it again.
-
Your message should also be showing you a line number. That would point you to that first use of $db. Looking closely you should then note that the line before $db doesn't end properly. Case solved.
-
Let's see what the OP has to say.
-
You said it's not working. Just what is it doing? I ran it and got just what the code is setup to do. It produces a sequence of numbers for trios of letters as in: AAA0001 AAA0002 ... ... AAA9999 AAB0001 AAB0002 .... and so on. That's what you coded.
-
Do you have php error checking turned on? What "doesn't work"? Not a very clear explanation. Something has to happen. Put some echos in your code to check the progress, etc., and temporarily eliminate the headers and just show messages.