-
Began Watching comma seperated string to array
Hi, I'm getting an url variable from this `test.php?ids=1,2,3` and need to transform it to Array ( [0] => 1 [1] => 8 [2] => 9 ) What I've tried … -
Replied To a Post in comma seperated string to array
remove the space in the delimiter (right now you have ", " so change it to ",") and you should be good to go. -
Began Watching PHP to Store Procedure in MSSQL
I have to pass two values to sp first value is nvarchar and second value is Int in SQL server,but i am not getting values, is my code is correct.Please … -
Replied To a Post in PHP to Store Procedure in MSSQL
I suppose a simple question is can you actually connect and run anything using the mssql commands? It's been a while for sure, but last time I did PHP to … -
Began Watching JPG INTO WAD FILE.
Hello guys, I want to know how to convert the JPG file into the WAD file ? the thing is not common as all. its not about to change extension, … -
Replied To a Post in JPG INTO WAD FILE.
It's a bit lengthy to post everything, but this thread should start you off in the right direction: http://www.doomworld.com/vb/doom-editing/10766-wad-file-format/ You will likely have to convert the binary jpg into something … -
Began Watching Can someone help me with this function for this MyProgrammingLab exercise?
Define a function void order(int & a, int & b, int & c, bool ascending) that places the values in ascending or descending order, depending on whether the last parameter … -
Replied To a Post in Can someone help me with this function for this MyProgrammingLab exercise?
You may want to read up on bubble sorts: http://en.m.wikipedia.org/wiki/Bubble_sort And either use a standard bubble sort, or consider the variations. Also, read about them and consider if they are … -
Began Watching Simple image displaying php error
In a query say i have a image path that have multiple images stored as path=http://localhost/images/xyz.When i run the code: <?php //Retrieves data from MySQL mysql_connect("localhost", "root", "") or die … -
Replied To a Post in Simple image displaying php error
Try taking the single quotes out from your select. You appear to be selecting the string literal 'images_path' on line 6 -
Replied To a Post in outputs all the words ending in a "s"
The purpose was to encourage him to try on his own, giving a place to start. I admit, I answered on my phone and didn't think to look what forum … -
Began Watching outputs all the words ending in a "s"
Write a function that outputs all the words ending in a "s", in a sentence sent to it as a parameter. -
Replied To a Post in outputs all the words ending in a "s"
a function that outputs all the words ending in a "s", in a sentence sent to it as a parameter. Done!! No... Seriously. Why not try first, then get some … -
Began Watching Help... Rightclick Block Script Needed
I need a Javascript Code to prevent users from right clicking on my website.. alot of people tell me why would you do that? the people will hate your site. … -
Replied To a Post in Help... Rightclick Block Script Needed
right click disabled or not, if someone wants to steal your images or video, they will. watermark your own stuff, sue when you find someone using your work. -
Began Watching Functions and Variables
print "Let's practice everything." print 'You\'d need to know \'bout escapes with \\ that do \n newlines and \t tabs.' poem = """ \tThe lovely world with logic so firmly … -
Replied To a Post in Functions and Variables
Is that not what you are seeing? Since you are returning a tuple, perhaps wrapping the values of the return in parentheses will have the desired effect? The commas are … -
Began Watching Software development,a wise choice of second career for an older woman?
Hello everyone! Glad to have found this great community here! A little background, I have a cert in web development from several years ago which I aced every class, however … -
Replied To a Post in Software development,a wise choice of second career for an older woman?
If you have the skills for the job and you match the company culture, I don't think you have anything to worry about. Just remember the company has to fit … -
Began Watching SSMS crashes
Hi Ive been using my sql server lately but for this past few days, its been crashing. I'm trying to find solution but seems nothing works or I'm just doing … -
Replied To a Post in SSMS crashes
If you are running locally, take a look at your event log (event viewer) in your control panel > admin tools > event viewer. Look for the error and see … -
Began Watching Incorrect DATE values
I have this code, where I want to get inclusive dates between two dates. Date1 is the date to day and Date2 is the date after 7 days. I am … -
Replied To a Post in Incorrect DATE values
Just a thought... where are you located vs where your server is located? If you are in (just a shot in the dark here) Asia, but the server is in … -
Began Watching Two values one row
hy i have a php script that its insert my sql db row two values,after i make the request to show that row $row.name. its show like this valueone,valuetwo with … -
Replied To a Post in Two values one row
You will find that posting your code along with the problem will get responses. We can't possibly know what your problem is with what you have written. -
Began Watching Twitter Feed using JSON
Hello, everyone. I am working on an application that I think I may need a little help. Yes, I am new to this language so I hope you won't be … -
Replied To a Post in Twitter Feed using JSON
I don't use jQuery often, but as I understand it JSON-P is designed to wrap a JSON object in a callback function as part of the response. If you were … -
Began Watching Multiple schema.org items with the same URL
Using microdata markup such as this on Dani's profile page with URL http://www.example.com/dani.html <body itemscope itemtype="http://schema.org/ProfilePage"> <h1 itemprop="name">About Dani</h1> <div itemscope itemprop="about" itemtype="http://schema.org/Person"> <link itemprop="url" href="http://www.example.com/dani.html" /> </div> </body> Is … -
Replied To a Post in Multiple schema.org items with the same URL
In the schema example they use an anchor tag instead of link, but otherwise it's the same. ... I've only used schema once and basically made a template page for … -
Marked Solved Status for Calendar Repeat Event Logic
so.. Im having trouble wrapping my noodle around this... my initial thought: -- events create table Events ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, Title VARCHAR(512) NOT NULL, Description … -
Replied To a Post in Calendar Repeat Event Logic
I had considered a similar structure to that, but I think Im gonna stick with bit maps instead. More flexibility, I feel, in terms of changing days and frequency on … -
Replied To a Post in Calendar Repeat Event Logic
I'm not sure I follow.. Are you suggesting that the trigger updates the frequency? The idea is to limit the number of rows for less cluttered tables and faster seek … -
Created Calendar Repeat Event Logic
so.. Im having trouble wrapping my noodle around this... my initial thought: -- events create table Events ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, Title VARCHAR(512) NOT NULL, Description … -
Began Watching Calendar Repeat Event Logic
so.. Im having trouble wrapping my noodle around this... my initial thought: -- events create table Events ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, Title VARCHAR(512) NOT NULL, Description … -
Began Watching __construct use in OOP By php
<?php /* @Author: Hannan_Mondul php() 2014 */ //use construct class Car { public $name; public $band; public $spreed; public function __construct($name="Unkown",$band="Unkwon",$spreed=40){ $this->name = $name; $this->band = $band; $this->spreed = $spreed; … -
Replied To a Post in __construct use in OOP By php
I believe he is attempting to demonstrate. -
Replied To a Post in Should I use .htaccess for payment security?
Fyi, you can spoof origination. It's only a stop gap. If you are worried about data, encrypt it. If you can't, let the big boys take care of it for … -
Began Watching Should I use .htaccess for payment security?
Hi, I'm thinking of using the htaccess file on my apache server to add a layer of security to the payment processing on my site. I am considering the 2 … -
Replied To a Post in Should I use .htaccess for payment security?
That's a bit of security through obscurity. To what end are you planning on doing this? Rewrites are good for looking professional. There is little security to it. It's basically … -
Began Watching php and mssql log in problem
hi i created login page using php and mssql but i got an error **"Fatal error: Call to undefined function mssql_query() "** **heres my log in code** <form name="log" action="log_action.php" … -
Replied To a Post in php and mssql log in problem
As I understand it, you need to use the ODBC driver to connect PHP to mssql. I may be a bit behind on that info, but I would be curious … -
Began Watching hotmail not receives mail send using php mail function
Hi I am trying to send mail using php mail() function. All servers are receiving mails except hotmail. I dont know why hotmail not receiving mails. Pls help me ...its … -
Replied To a Post in hotmail not receives mail send using php mail function
hotmail may be actively rejecting the message. Are you setting your "from" in the headers? Are you getting a bounceback? If you have malformed headers, some mail services will actively … -
Began Watching How to create infinite loop of Shuffle Text Effect
How to create infinite loop of Shuffle Text Effect using following code. It stops after animation is finished. How to start again when first loop of animation is completed? <script … -
Replied To a Post in How to create infinite loop of Shuffle Text Effect
I dont use jQuery at all, but from what I am seeing you can probably just change that setTimeout to a setInterval? Just make sure that the interval length is … -
Began Watching Need help with a PHP program using MySQL?
Hi, I am a beginner at programing and I have to do this project where it is asking me to valid ISBN 10 and 13 using MySQL database to store … -
Replied To a Post in Need help with a PHP program using MySQL?
He is using it to suppress errors. I agree with the posters on the other site, you have a lot of wonkey going on. Im not sure why you are … -
Replied To a Post in Password 101 (part 1): hashes and salts
Im in total agreement that security through obscurity is a fools errand. I agree, more iterations would not hurt. 10 is a bit weak, but that was demonstrative in nature. … -
Replied To a Post in Password 101 (part 1): hashes and salts
If you look closely at what I suggested in the link, you are not simply hashing the password once with a single salt. In fact, you are hashing 10 times … -
Began Watching when to use innerHTML ?!!
see this [html page](http://jsfiddle.net/samertaha/hRTw6/) cant understand why they populated the anchor with text this way : `a.appendChild(document.createTextNode('Hide details'));` why not this way with the innerHTML method ?? `a.innerHTML = 'View …
The End.