Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
78% Quality Score
Upvotes Received
10
Posts with Upvotes
10
Upvoting Members
9
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
7 Commented Posts
2 Endorsements
Ranked #621
Ranked #505
~55.2K People Reached
About Me

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
Member Avatar for csshacker

good example here [url]http://www.appservnetwork.com/modules.php?name=News&file=article&sid=8[/url]

Member Avatar for diafol
0
16K
Member Avatar for Ole Raptor

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. …

Member Avatar for Ole Raptor
0
219
Member Avatar for Ole Raptor

I am having a small issue with displaying text that has been converted with htmlspecialchars. In the db I have this: &amp;lt;b&amp;gt;Testing:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;it&#039;s a test&amp;lt;br&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;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

Member Avatar for Ole Raptor
0
237
Member Avatar for Ole Raptor

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 …

Member Avatar for Bob Hensley
0
149
Member Avatar for Ole Raptor

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 …

Member Avatar for WordTickler
0
2K
Member Avatar for Ole Raptor

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 …

Member Avatar for Ole Raptor
0
160
Member Avatar for Ole Raptor

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 …

Member Avatar for ChrisPadgham
0
165
Member Avatar for Ole Raptor

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 = …

Member Avatar for concepcionmark
0
5K
Member Avatar for serkan sendur

Not sure if that is possible. Can you not install management studio express to make any changes to your DB?

Member Avatar for optician
0
269
Member Avatar for Ole Raptor

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 …

Member Avatar for Ole Raptor
0
139
Member Avatar for Ole Raptor

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 ( …

Member Avatar for Ole Raptor
0
125
Member Avatar for sganandhsg
Member Avatar for The Dude
Member Avatar for codeorder
2
679
Member Avatar for Ole Raptor

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 …

Member Avatar for AndreRet
0
158
Member Avatar for somedude3488
Member Avatar for gingank
Member Avatar for tecktalk

[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 …

Member Avatar for terabyte
0
128
Member Avatar for marvan
Member Avatar for Ole Raptor

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 …

Member Avatar for Ole Raptor
0
88
Member Avatar for cpeeyush1

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.

Member Avatar for makyy
0
280
Member Avatar for ianmcd78

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]

Member Avatar for rajarajan2017
0
85
Member Avatar for twelvetwelve

try this [code=php] $tutorname = mysql_query("SELECT Personal_tutor FROM Student WHERE student_ref = '".$username."'"); [/code]

Member Avatar for Ankit_Parmar
0
272
Member Avatar for Ole Raptor

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 = …

Member Avatar for Ole Raptor
0
178
Member Avatar for Nahiyan

[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 …

Member Avatar for Ole Raptor
-1
105
Member Avatar for niths

just at a quick glance i am not seeing a session_start() at the top of your code.

Member Avatar for niths
0
57
Member Avatar for Ole Raptor

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 …

Member Avatar for griswolf
0
952
Member Avatar for jwaldron82

me personally. i would transfer everything from the access db to sql express. but that is just me

Member Avatar for mhahnel
0
522
Member Avatar for Ole Raptor

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.

Member Avatar for johnhtod
0
853
Member Avatar for jlenyi

This sounds to be a network issue. I would try setting this machine up wired and see if it makes a difference.

Member Avatar for jlenyi
0
101
Member Avatar for ryy705

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.

Member Avatar for Wraithmanilian
0
185