No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Christian programmed based out of Phoenix, AZ. Self-taught and focused on learning as much as I can and giving back to the community however I can.
- Interests
- Impacting my community through startup partnerships, volunteer opportunities, and supporting churches…
- PC Specs
- MacBook ProMac OS X (v10.6.4)2.4 Ghz Intel Core 2 Duo4 GB 667 Mhz DDR2 SDRAMI7 PC (currently out of…
16 Posted Topics
Re: Check out my thread I just got it resolved and its the same error message: [URL="http://www.daniweb.com/web-development/php/threads/373284"]http://www.daniweb.com/web-development/php/threads/373284[/URL] The answer was tricky because I'm using stored procedures as well, but if you can follow the steps there you may be able to figure it out as I did. | |
Trying to accomplish a simple test for a project I'm working on. [B]The Form[/B] [CODE=html] <form id="agreement_text_form" action="" method="POST" onsubmit="updateAgreementText(); return false"> <textarea name="agreement_text" id="agreement_text"></textarea> <input type="submit" value="Update Agreement Text" /> </form> [/CODE] The textarea has a WYSIWYG added to it (not needed but just in case here is that … | |
Ok so with the help of the Daniweb community here I've gotten better with AJAX/jQuery, enough to make a photography with it rather than flash. I'm very excited with how most of it is working but I've hit a brick wall I really need help with. [B]Outline:[/B] I have a … | |
So I have a big goal I'm trying to accomplish but since I haven't gotten an answer yet I think its too broad and I realize I may be missing some Ajax/jQuery fundamentals so I want to start a fresh post here to get any help I can. I have … | |
So for the record I'm using wordpress but you don't need to know wordpress in order to help me with this. This is my first AJAX attempt and [U]I read through W3schools[/U] and understand a good portion of how it works in theory but haven't found any close enough working … | |
Ok so I am obsessed with shortcuts and currently I over-use a tool called [URL="http://shortmarks.com/s.php"]Shortmarks[/URL]. I want to create a shortcut to use for DW to help save some more precious seconds but need some help with this one. For each book mark entry you need to enter the following: … | |
So briefly I have a framework class that I'm using that work perfect except with the issue I'm currently having. Problem is this, everything displays on the page as expected [B]until [/B]the form on the page is submitted and the ISSET at the top is true: [CODE=php]if(isset($addAccount)){ $SP = new … | |
Re: This is a website I used to learn some concepts. They were kinda a long at times but thorough enough to follow as a beginner, not sure what you background is yet. Depending on what you need I have quiet a few bookmarks and notes from my learning adventures. Hope … ![]() | |
Currently trying to update a balance column in my table using this query [CODE] UPDATE vendors SET balance = (SELECT SUM(balance) FROM vendors WHERE Code = $ud_payee) + $ud_minDue WHERE Code = $ud_payee [/CODE] When variables are translated, for testing purpose I would have the following: [CODE=mysql] UPDATE vendors SET … | |
Re: Not sure I completely understand some of your variables that are being called, and I can't see if this snippet here is within a loop of some sort, but from what I see it seems like you told the query to only pull the 1 production_id that matches the $newID … | |
So ultimately my goal is this: I have a table of info (from mySQL database) being displayed on my page, btracker.php. On this page is a pulldown menu for the month and the year (I need both to work but for now I'm [I]just trying to solve the [B]month[/B][/I]). [CODE=html] … | |
Having issues working with dates in PHP, very new aspect of PHP for me. Couple things I'm trying to accomplish and wouldn't mind a simple tutorial/explanation of since everything I'm finding assumes I know more than I do: [B]1. How to sort by dates?[/B] [I]Currently I am trying to query … | |
So I am new to PHP but I have put forth a lot of effort to research my answer before taking it to the community. So far this what I have: [CODE=php] <?php $id=$_GET['id']; include("config.php"); include("openDB.php"); $table = 'vendors'; $sortBy = 'Company/Name'; $query=" SELECT * FROM `$table` WHERE id='$id'"; $result=mysql_query($query); … | |
So I received awesome help from here before but forgot to ask at the time about one small thing. He taught me how to exclude my "ID" field displaying and about the implode function in PHP but if I display my data using it is there a way to make … | |
So let me start by saying I am new to PHP so any extra advice is helpful, working on a large scale personal project hoping to get better with PHP because of it. Now I have a script that displays my database just as I like, and next to each … | |
So having a decent understanding of programming but new to PHP I'm stuck on this somewhat simple problem. I have column titles being listed from my database as follows: [CODE=php] //This section gathers the field names // and puts them in the first row of the table $sql = "SELECT … |
The End.