• Member Avatar for hericles
    hericles

    Replied To a Post in display name

    Simply include the username is the result from the login query against the database. Then store it in session, or whatever persistance option is available to you. Then you have …
  • Member Avatar for hericles
    hericles

    Began Watching display name

    hi everyone hope you are all well... i am login with userid and password and i want to display there username after login from my oracle database how?
  • Member Avatar for hericles
    hericles

    Replied To a Post in display image

    Firstly, I'd check that the is_dir command is workinf correctly. Which folder are you running the script from? I doubt '/xampp/htdocs/image' is relative to where the script is running and …
  • Member Avatar for hericles
    hericles

    Began Watching display image

    i want to display my image from a folder but its not work what i change in code to work <?php $dir_path = "/xampp/htdocs/image/"; $extensions_array = array('jpg','png','jpeg'); if(is_dir($dir_path)) { $files …
  • Member Avatar for hericles
    hericles

    Replied To a Post in tpl files

    I maintain 2 legacy Symfony sites that make use of tpl files, in that site for creating ebooks from PDFs. A tpl is a 'template file' that can hold information …
  • Member Avatar for hericles
    hericles

    Began Watching tpl files

    Hello, I am trying to understand someone else code. I find many *.tpl files. Do you have any idea how to make the websites? Whether it's using certain framework or …
  • Member Avatar for hericles
    hericles

    Replied To a Post in minus button

    Which browser are you using? Both buttons appear to work fine in Chrome and Firefox.
  • Member Avatar for hericles
    hericles

    Began Watching minus button

    I wonder why this minus (-) on one place is able to hide the content while the others unable to hide the content, like nothing happen. It has the same …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Connecting to Microsoft SQL using PHP

    Does running `php -m` on the command line show the moduleas enabled? How about phpinfo()? Which module are you using: pdo_mssql or sqlsrv? I had some issues a few months …
  • Member Avatar for hericles
    hericles

    Began Watching Connecting to Microsoft SQL using PHP

    I am trying to connect to a Microsoft SQL server database using PHP 5.6 and am getting the error "could not find driver". I am initially attempting to use PDO …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Displaying messages on a label

    Please post your code, so we have a better idea of what you've done so far.
  • Member Avatar for hericles
    hericles

    Began Watching Displaying messages on a label

    I am trying to make a windows form application using Visual Basic 2017. I want to display messaged using a label and a Next Button and a Back Button. Every …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Data retrieval does not display images/data

    Type is a reserved word in MySql so this line `$stmt = $conn->prepare("SELECT DISTINCT type FROM tbl");` will be failing. You need to quote the word type for it to …
  • Member Avatar for hericles
    hericles

    Began Watching Data retrieval does not display images/data

    Hello. I have a sorting list which is populated with the different "types" and when a "type" is chosen the images along with corresponding info should be displayed but instead …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Is there a way to filter according to specific value after mysql selection?

    Option one is to make a new query that does include the filter clicked as a WHERE clause and get the subset products returned. Seeing as this is purely PHP …
  • Member Avatar for hericles
    hericles

    Began Watching Is there a way to filter according to specific value after mysql selection?

    Hi, I don't know if this is possible or a really stupid question. I was wondering if after a select query has been executed can the results be filtered for …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Inserting password with hash

    Follow through each step and make sure everything is as expected. So check $_POST['password'] holds a value, check that password_hash() doesn't return FALSE and check the error message from your …
  • Member Avatar for hericles
    hericles

    Began Watching Inserting password with hash

    Hello, I am trying to insert a registration form with password using `password_hash()` but I am not sure what is wrong with whatever i am doing because the password doesn't …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Cannot connect with database

    Help us to help you. What error are you getting or what behavior are you seenig that you don't expect?
  • Member Avatar for hericles
    hericles

    Began Watching Cannot connect with database

    Hi, I am a newbie in developing a website. i have tried to connect using mysqli conncetion Here is my simple code. // db.php code _______________________ <?php //$con = mysqli_connect("localhost","root","","bakery"); …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Hiding jpg and profile_image

    You'll want to either toggle or set display: none on: $('.image_road img') and $('.profile_picture img') Although you'll want to remember that if you hide the profile pic completely there is …
  • Member Avatar for hericles
    hericles

    Began Watching Hiding jpg and profile_image

    Cek this website: http://fresway.com/ On the left corner you see there is a big circle when you press it hides all other round buttons around it. Now, I would like …
  • Member Avatar for hericles
    hericles

    Replied To a Post in New users unable to change password.

    I don't see whre you're selecting the old password for the user, other than this: `$chg_pwd=mysqli_query($link, "select account_number,password from Login");` And that doesn't get the details for the particular user …
  • Member Avatar for hericles
    hericles

    Began Watching New users unable to change password.

    I have the below codes working for only the first user. The challenge here is; only the first user can change password, new users can't. Error Messaage "Old password is …
  • Member Avatar for hericles
    hericles

    Replied To a Post in node sass problem on Node

    Trying running `npm rebuild node-sass` It should help rebuild the correct binding for your setup.
  • Member Avatar for hericles
    hericles

    Began Watching node sass problem on Node

    Hello i am getting these error node sass could not find a binding for your current environment windows 64-bit with unsupported runtime (59) when i am typing `ionic serve` on …
  • Member Avatar for hericles
    hericles

    Replied To a Post in printf with question mark and NULL

    That format is called a ternary operator. It's a version of an if/else statement. `row[i] ? row[i] : "NULL"` is the same as if(row[i]) { // use value row[i] } …
  • Member Avatar for hericles
    hericles

    Began Watching printf with question mark and NULL

    What does this printf do? Not familiar with the question mark, colon, and extra NULL at the end. printf("%s ", row[i] ? row[i] : "NULL");
  • Member Avatar for hericles
    hericles

    Replied To a Post in gurus please help me to modify this error in js file

    You're passing your comment string into the .comment-info div as text. You need it to render as HTML so instead try: `$(".comment-info").html(comment);`
  • Member Avatar for hericles
    hericles

    Began Watching gurus please help me to modify this error in js file

    hi programmers in the code below i want to use font awesome in comment out put , storyReactionNum >= 4 ? comment = 'HOT <i class="fa fa-star" aria-hidden="true"></i>' but the …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Array Mean Median Mode

    The problem with your findMean method is that you aren't using the passed in array at all. You're ignoring it completely, creating your own array, doing the correct maths on …
  • Member Avatar for hericles
    hericles

    Began Watching Array Mean Median Mode

    So I have a project with a tester that is not displaying what I thought it would display. The project description and everything is as follows: Given an array of …
  • Member Avatar for hericles
    hericles

    Replied To a Post in remote server not responding on my nokia 208

    Some extra information here would really help... You've given us nothing to work with.
  • Member Avatar for hericles
    hericles

    Began Watching remote server not responding on my nokia 208

    remote server not responding on my nokia 208
  • Member Avatar for hericles
    hericles

    Replied To a Post in Has Too Many Arguments Specified. Please Help Me

    That error generally comes from having an incorrect number of parameters in you SQL queries or, in some other way, introducing an error involving the parameters. Pay close attention to …
  • Member Avatar for hericles
    hericles

    Began Watching Has Too Many Arguments Specified. Please Help Me

    Procedure or function P_UpdatePurchaseInv_test has too many arguments specified. ALTER PROC [dbo].[P_DeleteForUpdatePurInvDet] --Purchase Invoice Details 12 pic(13pic active) --@purid int , --@purinvid varchar(255), @purinvdt date, @invno varchar(255), @invdt date, @nrr …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Ionic 3 and Angular 4: Compatible framework for Ios and Andorid?

    I've never been too fond of Android Studio. I use Visual Studio Code for anything Angular now and love it. But it really comes down to a couple of things: …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Question about namespace space in C# ?

    It sounds like you are missing the 'using' statement for the required class at the top of the code file. So, if you have the class Properties inside a namespace …
  • Member Avatar for hericles
    hericles

    Began Watching Question about namespace space in C# ?

    Perpetual program reopens error: The type or namespace name 'Properties' does not exist in the namespace 'xxx' (you are missing an assembly reference?). Suppose there is a namespace space xxx …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Ionic 3 and Angular 4: Compatible framework for Ios and Andorid?

    Hello, First up, no Java needed at all. Angular is based in TypeScript now which has a very similar structure to JavaScript. If you don't know Javascript that well, it's …
  • Member Avatar for hericles
    hericles

    Began Watching Ionic 3 and Angular 4: Compatible framework for Ios and Andorid?

    Hello how do you feel about Ionic 3 and Angular 4 frameworks? Are they compatible with Ios? Do i need to know Java to use them?
  • Member Avatar for hericles
    hericles

    Replied To a Post in Please Help Problems with elif statement

    Also, the last 'else' should be another elif to work properly. That or remove the condition for that line.
  • Member Avatar for hericles
    hericles

    Replied To a Post in Please Help Problems with elif statement

    You don't have the correct number of closing brackets to match the opening ones one the print lines. Lines 22, 24 and 26 are all one short.
  • Member Avatar for hericles
    hericles

    Began Watching Please Help Problems with elif statement

    So I have to write a program that takes the amount and weight of pumpkins entered by a person and then outputs them back with their corrisponding weight class that …
  • Member Avatar for hericles
    hericles

    Replied To a Post in The model item passed into the dictionary is of type 'System.String', but t

    The error is quite clear. You're passing a string into a dictionary that is declared to accept BetGuns.Web.Models.Home.VM_HotGames. You just need to look at the line causing the error and …
  • Member Avatar for hericles
    hericles

    Began Watching The model item passed into the dictionary is of type 'System.String', but t

    The model item passed into the dictionary is of type 'System.String', but this dictionary requires a model item of type 'BetGuns.Web.Models.Home.VM_HotGames'. How to fix this error @foreach (var c in …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Update with check box in PHP MYSQL

    The only thing that can be going wrong is that the ID is getting misread when looping through an array with a single value. It is always reading the ID …
  • Member Avatar for hericles
    hericles

    Began Watching Update with check box in PHP MYSQL

    Hi I'm trying to update my DB table with below code.When I select all row or only 1st row its working fine, but when I select 2nd row or another …
  • Member Avatar for hericles
    hericles

    Replied To a Post in Python bank system help

    Please add your code to the post, i.e. in the post, not an attachment.
  • Member Avatar for hericles
    hericles

    Began Watching Python bank system help

    Hi guys i need some help i am tryig to code a python fake bank system. The program needs to be able to deposit withdraw,check the balance and quit the …

The End.