Ravens PHP Scripts: Forums
Forum Index • Forum FAQ • Search • Memberlist • Usergroups • Profile • Log in to check your private messages • Log in |
Search found 57 matches |
Ravens PHP Scripts And Web Hosting Forum Index |
Author | Message |
---|---|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
New question.
Back to the checkboxes. These things are just a thorn in my side. Is it possible to Insert my data based on the checkbox "id" vs. the "name"??? I.e. I have... If(isse ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Think of it this way ... MYSQL returns the results in an array. The array name is $mps_gid. The
Perfect explanation!! That is what I couldn't understand about the whole entire thing. I really do ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Woohoo... got it!!
I used Raven's code and added what I forgot the whole time... query: $mpgid = $db->sql_query('SELECT gid FROM ' . $prefix . '_nsngr_users WHERE uid =\'' . $userinfo& ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Fkelly-
I used your method to echo out my query... and here is what it is. code: $mpgid = 'SELECT gid FROM ' . $prefix . '_nsngr_users WHERE uid =\'' .$userinfo['user_id'] . '\''; e ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Thanks guys for all your help... I really owe y'all big...but it still seems to be evading me.
Palbin- I used this $mps_gid = $db->sql_query('SELECT gid FROM ' . $prefix . '_nsngr_u ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
sorry for double post... no edit.
to correct the second code... echo $mpgid . '<br />'; |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Thanks fkelly for the book reference... I'll be looking for it.
------ So then I should write the query like this... (changing the var name just for consistency) $mpgid = 'SELECT gid FRO ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Well it's going to be a hidden input that the end user never see's... but to check my query syntax and make sure it's actually grabbing the data I'm filling a text input with the value.
Just got t ... |
|
Topic: Query Syntax | |
mefoo Replies: 12 Views: 12221 ![]() |
![]() |
Sigh... another issue I can't seem to find the answer to.
I am trying to grab the group id from the _nsngr_users table where the users id matches. I have tried multiple ways of getting this valu ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
Well... depends on what's "hot". Where ya fishing or hunting? ![]() I don't make to many trip ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
Boy don't I feel like a n0b. Sheeesh. Thanks for helping me stumble out of stupidville.
On a different note... what part of texas are you hailing from? (would love to buy you a drink if you live c ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
Alright.... I tried setting eveything up the way you suggested... same results. My other jquery stuff works fine.. the validation engine stuff.. no dice.
For better reference... I've taken screen ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
Hmm... maybe it is because I had v1.7 ?? (unstable??) Maybe that is it. I'll try the 1.6.2 version of the script and see if that makes any difference. Thanks for the insight... I'll report back once I ... | |
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
Just tried putting a fresh copy of jquery in the same directory and loading it. Still no dice
<script type="text/javascript" language="JavaScript" src="jquery-1.4.2.js&q ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
hard to see there, need to see the entire section loading the js files. Although
<script type="text/javascript" language="JavaScript" src="js/jquery.validationEngine-en. ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
Gotcha. Never thought about doing that.
Here's what's being loaded at present: <link rel="alternate" type="application/rss+xml" title="Forums" href="http ... |
|
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
couple of things, you need to load jquery before any scripts that use jquery, and it's also possible that since you are loading jquery from googleapis that jquery is loading more than once (look at yo ... | |
Topic: Form Validation | |
mefoo Replies: 19 Views: 30639 ![]() |
![]() |
The headaches just don't quit. ![]() I have a form that I want to validate (both inline and on submit) and I've come across a very nice validation jquery plugin that I would love to use... however, I ... |
|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
Thanks for confirming. I really appreciate all your help with this and insights. It's been a real learning experience and I hope to become good enough to contribute back to the RN community. | |
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
Palbin-
I need your opinion. I'm getting really close to having a working version of what I set out to achieve, however, I've got one last real major hurdle to cross. It's the group id part. He ... |
|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
Another question on something I don't quite get.
I am trying to get in place my method of showing only "active" projects. (reason being... I want the ability to approve or deny requests prior to ... |
|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
well... the problem is that my form is going to create a project.... and "IF" any of those checkboxes are checked... I wanted to add a task(s) to the project being created.
In order to add the task ... |
|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
Another question for anyone who might help.
I've gotten into the re-coding part of this and I've had a relitivly easy time reading and understanding the way you coded this Palbin, however, I'm stuc ... |
|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
OH I COULD KISS YOU RIGHT NOW!!! Thank you so much.
I wasn't aware of the "$inlineJS" part and that's where I was getting messed up. ----- For future reference... There should be "3" elemen ... |
|
Topic: Project Tracking Module - Question | |
mefoo Replies: 47 Views: 50317 ![]() |
![]() |
Sorry guys for being such a questioner.... but I'm sorta lost when it comes to using JQuery and adding it to a RN page. (have never really used javascript or felt the need to teach myself.... till now ... | |
Ravens PHP Scripts And Web Hosting Forum Index Goto page 1, 2, 3 Next |
Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours