120 Posted Topics

Member Avatar for mehnihma

Man, that's big problem. LOL Try dumping the variables you're inserting before execution in the DB. From there, you should see any inconsistencies in your inputs or processes.

Member Avatar for gon1387
0
319
Member Avatar for MMadhavi

The solutions I can think of is creating a page scpecifically for a specific map, with a map generated by passing the city and theater in the URL, or through Ajax **SOLUTION 1** Client Selection & Server-side map info display using GET (what ever this is :D) - with this …

Member Avatar for MMadhavi
0
1K
Member Avatar for venkyb47

Hi venkyb47, Can you put your script at the end of the body tag. Like this: <body> ... some wierd HTML stuff <script> ...put your javascript here </script> </body> Then tell me if this works.

Member Avatar for venkyb47
0
144
Member Avatar for anandschiru

Direct PHP support, none. But hacks, yes. I'm just curious, what for?

Member Avatar for gon1387
0
85
Member Avatar for arcticM

This one's tricky, having an image, that would notify an onfocus event; I remember IE's the only one who does that. LOL The first element with the onclick event that would fire up is the descendants, so meaning, if you're gonna reference body on the the onclick event, the function …

Member Avatar for arcticM
0
780
Member Avatar for suavedesign

No more, no less. @Baradaran's right. by the way, just a clarification of what you want. Since you mentioned `clear: both`, by anychance is this(A) what you wanted to do? or (B)? (A) |--------------------------| |[PARAGRAPH 1] | |[PARAGRAPH 2] | | | (B) |--------------------------| |[PARAGRAPH 1][PARAGRAPH 2]| | | | …

Member Avatar for gon1387
0
107
Member Avatar for ambageo

Do you mean installing a MySQL or creating a database in MySQL through an SQL file? Please clarify.

Member Avatar for gon1387
0
83
Member Avatar for hwoarang69

it's quite fuzzy what you wanted to do, but the way you have sorted the TDs and separated each column I'm guessing if this is what you wanted. Initialize table_image_names, table_item_prices, table_username Prepare DB Connection Get DB Result Get each DB result row table_image_names .= DB_Result[IMAGE_NAME] table_item_prices .= DB_Result[ITEM_PRICE] table_username …

Member Avatar for gon1387
0
2K
Member Avatar for iamjin04
Member Avatar for iamjin04
Member Avatar for scenium

Hi scenium, Here's the thing you should do: 1. Check on what website the links are comming from. This might be an issue of people clicking on a mistyped or changed URL in your HTML A tag, from a reffering HTML A tag, unless you have typed it that way, …

Member Avatar for gon1387
0
243
Member Avatar for onofej

**Please see my comments commented on your code** <?php session_start();session_destroy(); session_start(); /** * 1. $_POST AND GET INTERCHANGE * The the condition in your if statement expects HTTP get method, but inside * your if block, it processes sent Post data with the password and repassword. * I assume you …

Member Avatar for onofej
0
1K
Member Avatar for chira9na9pal

Is what you're trying to do is to prettify the URL? Like you have 6 pages in your website, all writtenin PHP: 1. www.mydomain.com/page1.php 2. www.mydomain.com/page2.php 3. www.mydomain.com/page3.php 4. www.mydomain.com/page4.php 5. www.mydomain.com/page5.php 6. www.mydomain.com/page6.php and you, for example, wanted it to look this way, not exactly the same format as …

Member Avatar for gon1387
0
243
Member Avatar for Riu 2009

Put the snippets below before any scripts in your manage-users-action.php file, if the array shows and empty email, password, firstname, and lastname, then your javscript might be the problem. Then, we can assume that your javascript's not working properly. // Add var_dump($_POST); var_dump($_POST); die();

Member Avatar for jstfsklh211
0
264
Member Avatar for tiekwebstar
Member Avatar for jimmyye0h

Have you tried "**debugger;**" to put breakpoints in your code? MyLogin = function(){ this.loginUser = function(){ //getData through AJAX // insert the debugger to create a breakpoint; script stops here debugger; this.prepareUserData(userData) } this.prepareUserData = function(userData){ //... implementation for preparing user data } }

Member Avatar for diafol
0
215
Member Avatar for ak47carbon

pritaeas tutorial's a good one, it explains the fundamentals a lot. It's pretty much a good start before diving into google. [pritaeas OOP tutorial](http://www.daniweb.com/web-development/php/tutorials/437592/introduction-to-phps-object-orientation)

Member Avatar for veedeoo
0
209
Member Avatar for DaveyMoyes
Member Avatar for amith_ami

It failed because there were no "OR" in between some likes. **From Original Query:** key_skills LIKE '%php%' OR key_skills LIKE '%net%' key_skills LIKE '%php%' OR key_skills LIKE '%net%' key_skills LIKE '%php%' OR key_skills LIKE '%net%' **Query w/ Commments:** key_skills LIKE '%php%' OR key_skills LIKE '%net%' [MISSING OR] key_skills LIKE '%php%' …

Member Avatar for amith_ami
0
210
Member Avatar for ariffin246

You can use str_split(). And extract, except that extract will skip non php strandard variable. You can just run through the array and assign a key on each value. Let me know if you got this, I'll be happy to create an example if you want to.

Member Avatar for ariffin246
0
124

The End.