- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 11
- Posts with Upvotes
- 10
- Upvoting Members
- 10
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
79 Posted Topics
Re: excellent article for a noob like me i do have questions? [LIST] meta keyword is now irrelevant ? (if not do i limit the keywords to 150 also?) [/LIST] [LIST] I've read somewhere, i can't remember where, but they say to change the description every month or so. Is that … | |
Re: WOW finally ! More answers than questions. i took the time to register, just to say, very helpful thread. i was planning on going php/python/mysql but i like java/mysql better because of the OOP management. anyways thx guys ill keep reading, until i can post some constructive comments. DM | |
Hey guys, That newsletter *reminder* that's said (it's been awhile i didn't visit) was a good thing. So here i am. I see, it change alot from my last visit. Great work Dani and the gang. So yeah, i didn't code since 2012. My carreer path is been a rollercoaster … | |
Hey guys it's been a long time i've wrote here. I decided to take a course in JS OOP, my problem is the program doesn't do the difference between objects. Exemple the program work only if i pop 1 object, if i pop a second one, it screws my functions. … | |
Re: @GliderPilot is right, this sounds like a html/css problem. have a fixed position for header and content also ? fixed height ? maybe try a new approach like float: left for header and content and clear:both for the footer. and some problematic code would help us help you :) | |
Re: it depends on how your map is done is it an image or you've done it with a canvas or svg ? if it's a simple image would use a JS with DOM break the image down, do image of all stores in a different color and change the image … | |
Re: check this out, just to re enforce @Zagga point. http://php.net/manual/en/security.database.sql-injection.php | |
Re: maybe you want to read on VMware we use it on our servers, basicly it splits the physical resources and create virtual machines with the fragmented resources. now whats the programming behind it, sorry have no idea. | |
i kept reading on sql injections after answering a guy on the subject and end up on this page: http://php.net/manual/en/pdo.prepared-statements.php which i think is great for optimisation and i will probably apply on this portal im working on, but ... what do you guys think about this prebuild template like … ![]() | |
Hey guys, This question is pointed at the guys working with voip. Here's the story, One of my client brought me an ATA device telling me there is no more dial tone. I check the hardware and no physical damage. So i tried to enter the admin section. Did * … | |
Here's a great link i fund on SEO. I'm no SEO guy, but this site his worth mentionned. Though of sharing with you guys who aren't in SEO, but need to do some. http://www.webconfs.com/15-minute-seo.php | |
Re: hmm... you sure your doing this for an hospital ? usually health sector are very pointy. lets say they're upgrading from paper to digital. didn't they have patient records on paper, you can base your DB structure on it ? i'm certain they would have insurance references in there somewhere, … | |
Re: Get a third party hosting solution, like godaddy or someting like that and share the admin access with him. | |
Re: foreach (glob("somefolder/*/*") as $filename) { //code for want you want to do with the results } | |
Hey, been awhile. I'm working on a portal for distributors, some type of JIT (just in time) implementation. Now i've been reading alot on DB so i can implement the right database and the right data structure. Now i see, i can do alot more then i'm use to do. … | |
Re: Here's an exemple of AJAX code that delete an employee from our data: Always remember that AJAX needs to send an HTTP request so PHP can return a response. In this exemple the response is store in $chaine, so you can continue your php code around it. $chaine = "<script … | |
Re: you need to have access to the database outside the script check if you have access to phpMyAdmin or a direct console access and if you have no idea if you have access to one of those, check with your network admin | |
Re: wheres your code, its hard to fix something we cant see ... you should have a query to the student table where the WHERE clause match the 1st table variable you previously queried, then use the variable to add the student in the select drop list option name. | |
Re: you need to use the charset entitites like: é is é you have a complete liste of entities here: http://www.w3schools.com/tags/ref_symbols.asp you can use entitites names or number doesnt matter and it will show the accents in all browsers | |
Re: :P http://www.dynarch.com/static/jscalendar-1.0/index.html seems im working on an old version, new version here: http://www.dynarch.com/projects/calendar/download/1.9/ | |
Re: @pritaeas nice function, help me indirectly this means i should go over php lib thx | |
Re: @iamthwee is right check out this tuts: http://net.tutsplus.com/tutorials/php/object-oriented-php-for-beginners/ after going through you'll see you can access variables or function outputs very easy | |
![]() | Re: There's alot of framework out there. If your starting with frameworks, i would suggest Smarty for starter, then move on to a more omcplete framework, like mentionned above CodeIgniter or Zend are great framework. but look around, like i said, there's alot of framework out there. and i would suggest … ![]() |
hey guys, finally have some time to think about a personnal project. i want to create a stock screener, with some cross checks on data like oscillator, MACD, volume and moving average. my 1st step was to look around and see if they're was any finance API out there that … | |
Re: you should read this: http://www.php.net/manual/en/mysqli.quickstart.dual-interface.php you wrote your code like if you were using mysql procedural scripting, but you're using mysqli witch is more object oriented. 1) in your connection you need to pass the db name 2) mysqli_fetch_array( $sql ) should be mysqli_fetch_assoc($sql) 3)$result would be an object of … | |
Re: thats easy, but before i gave a solution or correct mistakes, did you try anything yet ? show us some code | |
Re: im not a front end programmer but heres the docs that can help you http://php.net/manual/en/ref.image.php | |
Re: not directly you need an access to cel network we have an SMS server for our clients, setup with usb internet keys that we ve switch the sim cards for cel cards the setup is done with shell scripting, the only thing i do in php is call the script … | |
![]() | Re: that was my 1st task when i was hired, put the site for i18n standards. but, i was a noob at the time, so maybe my approach isnt the best i did that differently thu. 1) check cookie if cookie == null, detect language and set cookie 2) drop down … ![]() |
Re: im not 100% sure, but i think it has something to do with your mix of single and double quotes. if you concatenate, i do it like this: `<input type='hidden' name='empID' value='".$data2[0]."'/>` or you can use the braces like so: `var conf = confirm('Supprimer employe {$this->empID}');` remember that variables in … | |
Re: isnt shell_exec only for executing a cmd on the shell ? here we use exec() to interact with C programs. and since your script is more the only cmd line ... check it out maybe it can help http://www.php.net/manual/en/function.exec.php | |
Re: phpMyAdmin is only an interface to help you manage MySQL DB, i don't think you can do that. you will have to write the queries. | |
Re: here's what i fund, hope it helps, i use to manipulate binairy in Java, but never done it in php thu http://www.codediesel.com/php/unpacking-binary-data/ | |
Re: i don't know about making calls directly within php and i havent search for it. here at the job we have an asterisk server where the company build a php platform for call management on top so i dont know what your plans are, but if its related to VOIP, … | |
Re: you want to create a W3C http://validator.w3.org/#validate_by_uri like site, but for php ? and you want us to point out structure scanning hints ? or you need to know how your code is supposed to be build ? ![]() | |
Re: if i remember correctly mysqli return an object of arrays. so you need to run through arrays, then run again in the array. while($row = $query->fetch_assoc()){ foreach($row as $key => $value){ ... do something | |
Re: i don't know about ISS or windows server. but i think you need an apache server on there. and i also don't know if you want to learn howto do all this. or you just want to get to php scripting asap. if so try a wamp server, it's all … ![]() | |
Re: you need to add the values: hold up ill correct that, at work, BRB | |
Re: yes, he's saying you need to pass the database name in mysqli like this: `$db = new mysqli($host, $user, $pass, $dbname) or die($error);` | |
Re: ditto on the IDE, i also use Eclipse with PHP extension. on the testing and developpement part, i use WAMP. no 3rd party hosting. | |
Re: im reading on html5 for sockets. this maybe not much of help on JS side, but i saw something about drag and drop features. and since more and more webmasters are making the jump to html5, that wouldnt supprise me that the site your looking at is in html5. check … | |
Re: check this out http://www.daniweb.com/web-development/php/threads/429946/cannot-send-session-cache-limiter-headers-already-sent#post1841407 maybe it can help | |
Re: ditto :P hmm... function session_destory(), maybe ... function session_destroy() maybe just a synthax error like Sqid said the code will help. | |
Re: what we have at work is 1 form for all, admins, clients and operators. they have to enter their log and pass and select an option on a drop list before the submit button. depending on their selected option and their authentification, the main core of the app. is changed … | |
Re: yes get a grip on php and sql, is not a bad idea heres a start on php: http://devzone.zend.com/6/php-101--php-for-the-absolute-beginner/ or if you dont want to write it from scratch take a look at some quick CMS, like wordpress or joombla, but i personnally dont like them, i prefer to write … | |
Re: and if nothing works try this: 1st line of your page, even html `<? ob_start();//Start buffer output ?>` and the last line of your page `<? ob_flush();//Flush buffer output ?>` and i've pick that trick in one of the DaniWeb thread which i dont remember when and where. Try to … | |
hey guys, i need to create a link between the DIDs showed in the freepbx and the custom app. i have at work. now the DIDs showed in the freepbx are in the asterisk DB or the asteriskcdrdb DB and which table? the setup im working with is centos/asterisk-now thx | |
this is more of a career questions thread. my situation: 15 years plus in marketing management, career change for programming. i concider myself as a Jr. programmer, been programming since november 2011. hoping from PHP to C to Java, back and forth, depending on what im ask to do. i … |
The End.