- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 10
- Posts with Upvotes
- 10
- Upvoting Members
- 9
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
Not much to tell. Married with 4 kids (2 Grown and out of house. WOOHOO!). I have been dealing with Microsoft BSOD's for about 10 years. Have recently started web dev with php and mysql.
- Interests
- Family, Guitar, Gaming, Fishing and Computers
Re: good example here [url]http://www.appservnetwork.com/modules.php?name=News&file=article&sid=8[/url] | |
I have a function that calls a php script to update cart items (cookie). When I have multiple items in the cart I use a loop that calls my function. function updateCart(ur){ $.ajax({ url: ur, success: function(data){ console.log(data); } }); } I think this is firing too fast or something. … | |
I am having a small issue with displaying text that has been converted with htmlspecialchars. In the db I have this: &lt;b&gt;Testing:&lt;/b&gt;&lt;br&gt;&lt;ol&gt;&lt;li&gt;it's a test&lt;br&gt;&lt;/li&gt;&lt;/ol&gt; When I use: echo htmlspecialchars_decode($variable); The page displays: <b>Testing:</b><br><ol><li>it's a test<br></li></ol> I am not sure why this is happening. Any help is appreciated. Thank you | |
I have been trying to work around a problem but am not having much luck. I have classes that include a file with my db settings. The problem is I have a functions directory that calls some of the classes. I get failed to open stream: No such file or … | |
Hello, I have a form that has hit its max for controls. I have created a UserControl to add more to the form. I can re-size the UserControl but the controls on the UserControl are not resizing. I have the Sheridan ActiveResizer tool on the form that works with all … | |
Hello, I am such a rookie when it comes to C#. I have created a class with a list. I am needing to read an xml file into this from inside the class. Then I am needing to manipulate this list from inside the class as well. I have everything … | |
Hello, I am trying to go through a list of comboboxs and set the selected value from the itemdata. So far I have this working for a single combo. I have a few combo's that I need to do this for and was trying to find a way to pass … | |
I am getting this message: value of type "System.data.datacolumn" cannot be converted to "System.windows.forms.datagridviewcolumn" when I am trying to add a column to the dgv [code=vb.net] Dim dtcCheck As New DataColumn("Select") dtcCheck.DataType = System.Type.GetType("System.Boolean") dtcCheck.DefaultValue = False Dim sa As New SqlDataAdapter("SELECT * FROM therapy", myconnection1) sa.Fill(ds, "Therapy") dgvther.DataSource = … | |
Re: Not sure if that is possible. Can you not install management studio express to make any changes to your DB? | |
I am having an issue creating a stored procedure but I keep getting an error "Error Code : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE PROCEDURE sp_Insert_Address ( in p_UserID … | |
hello, I have found a set of functions to return values from mysql queries. I have the array filled but I am not sure how I am going to display the data. Any help is greatly appreciated. [CODE] $db->select('awf_users'); print_r($db->result); [/CODE] my result is: Array ( [0] => Array ( … | |
Re: you want to run cmd as admin. then try to register the ocx | |
Re: ^Loves to post <Tired and wants to go home vHas more posts then I? | |
Hello, I am having an issue with my legacy app saving files to Windows 7 machines. My first thought was that I would just run the program as administrator but that helped none. I have attempted saving this image to the temp folder and to appdata but neither seems to … | |
| |
Re: [url]www.w3schools.com[/url] is a good place to start. you will get the basics and if you want more indepth articles you can go to [url]www.php.net[/url]. there are many different books you can purchase. but these two sites and google is a great start to learning php. when you are ready to … | |
| |
Hello, I am having an issue with a data filled combo box. I can not put my finger on why it is giving me the "run-time error 424 object required" error. The code is simple and the data is there. [code] Dim sSql As String Set rsMfg = New ADODB.Recordset … | |
Re: I know not everything done with torrents is "Illegal". Usually if they are free ebooks and such you will have other alternatives to get the download. I would suggest speaking to the network administrator and being able to prove that they are free and not illegal downloads. | |
Re: with the if statement your session will only be set if the app is blank. i would try it with an isset [code=php] <?php session_start(); if(isset($_POST['app'])){ $_SESSION['app_name'] = $_POST['app']; } ?> [/code] | |
Re: try this [code=php] $tutorname = mysql_query("SELECT Personal_tutor FROM Student WHERE student_ref = '".$username."'"); [/code] | |
Hello, I am having a problem getting variables in my function. Below is my code and an explanation of how it is being called. 1. I set the vars: [code=php] error_reporting(2047); require_once('XML\RPC.php'); define("SITECODE", 000000); define("REQUEST_URL", "/external/request.php"); define("REQUEST_SERVER", "domain.com"); define("REQUEST_PORT", 443); define("XML_DEBUG", 0); $software_name = "domain.com"; $messages = array(); $errors = … | |
Re: [QUOTE=Nahiyan;1243761]I am new to PHP and I discovered a new trick, I want to create a script and if $pagea=1 then it will display the contents of page [B]a[/B] and so on but I want to know how to make a button or anything that is kinda like link and … | |
Re: just at a quick glance i am not seeing a session_start() at the top of your code. | |
I am having issues with the following script. I don't see anything wrong here. Very basic but it is giving me a headache. Any suggestions are welcome. I am running version 5.1.37 and the error is: Error Code : 1064 You have an error in your SQL syntax; check the … | |
Re: me personally. i would transfer everything from the access db to sql express. but that is just me | |
I have searched and I have searched but I can't find a way to display all instances of SQL Server in a combobox. Any help is greatly appreciated. | |
Re: This sounds to be a network issue. I would try setting this machine up wired and see if it makes a difference. | |
Re: you can get an idea how this works if you look at this article [url]http://www.dmxzone.com/showDetail.asp?TypeId=2&NewsId=3992&LinkFile=page1.htm[/url] on page 3 it talks about doing this with php/mysql. |