3,182 Recommended Topics

Remove Filter
Member Avatar for
Member Avatar for increase

I want to pass two variables in a php url at present I have $line = "<a href=\"$click?$namehref\"><font color='red'>$name</font> </a>"; When I click the link it displays the $click variable, but does not then pass to $namehref which is an mp3 link, what would the syntax be to achieve this.

Member Avatar for Dani
0
246
Member Avatar for Maycon_1

Hello guys, how are you all doing ? Guys there someone there, who is interested in building a project together ? to connect exchange ideas and knowledge

Member Avatar for john_111
0
88
Member Avatar for Stelian_1

Is there a way to get the data from an registration form by counting the inputs and textfields but excluding the submit and hidden ones? Lets say I have a form with 5 input fields that contains the data for registration can I make an array for all so when …

Member Avatar for Dani
0
61
Member Avatar for vegaseat

Things don't have to be black and white all the time. Use a Windows API call to add some color to your text output.

Member Avatar for Dani
2
69K
Member Avatar for borobhaisab

Howdy once more, Just got another question on Sql and Php Prepared Statement. How would you confirm a successful row insertion to a mysql table ? Which one of the following lines would you add the IF condition to in order to check insertion successful or not ? 1). mysqli_stmt_execute() …

Member Avatar for borobhaisab
0
90
Member Avatar for sam023

i want to know is there any inbuild function to add spaces in javascript after particular interval..!!? there is string '00009999' i want to add blank space 0000 9999 after every 4 digits.?

Member Avatar for Dani
1
33K
Member Avatar for Stefce

I am having a problem passing a `$_POST[]` parameter to another file via the URL. Look at the line 34 and 138. The line 34 is getting the URL parameter in a POST and line 138 should pass that same parameter value to the other file, but i get an …

Member Avatar for Stefce
0
98
Member Avatar for Stefce

I have this code <?php // Connect to the database $servername = "localhost"; $username = ""; $password = ""; $dbname = ""; // Create connection $conn = mysqli_connect($servername, $username, $password, $dbname); // Check connection if (!$conn) { die("Connection failed: " . mysqli_connect_error()); } // Get the user's IP address $user_r_ip …

Member Avatar for Dani
0
54
Member Avatar for nalb4242

Hello , I have been trying to connect to remote server using SSH using Microsoft visual studio but nothing is happening after i add all needed data in the cross platform logging I receive the below error connecting then disconnecting 11:33:35.6941763 [Info, Thread 1] liblinux.RemoteSystemBase: Connecting over SSH to XXX …

1
72
Member Avatar for David_140

I am not that much of an expert in PHP as it has been few months since I started playing with it. Currently I am working on creating a basic CRUD operation in PHP. I follow this tutorial on CRUD in PHP (https://www.cloudways.com/blog/execute-crud-in-mysql-php/ ) to create it on a local …

Member Avatar for Rose_17
0
478
Member Avatar for Onion13

My program worked earlier this year before Windows 10 put and update and suddenly it doesn't work anymore. I have a separate laptop that didn't get the update and it works perfectly. Can someone please tell me what I need to do to get it to work? Ive tried everything …

Programming c#
Member Avatar for Onion13
1
144
Member Avatar for Krisha03

Hello There, I am looking for MUI React-based admin template in the TypeScript version for my project. Can you guys suggest some React Admin templates that are comprehensive and easy to use? I really appreciate any help you can provide.!

Member Avatar for anandpatel04
0
201
Member Avatar for Abhinesh_1

I am making a edit blog option for a website. I am done with the code. Whenever i click the edit button it redirects to the form action file and shows a blank page. Here are my codes. # edit-blog.php # <?php include_once('header.php'); include_once('sidebar.php'); include_once('controller/BlogController.php'); $_SESSION['ap-old']['title'] = $_POST['title']; $_SESSION['ap-old']['short_description'] = …

Member Avatar for Stelian_1
0
103
Member Avatar for vbala2k5

Hi, i have problem with table conversion from xml to html using xslt. i converted rowspan and colspan in separate row(entry), but if both rowspan and colspan come in single row(entry, colspan and rowspan) is not converting. i have tried so many ways but i didn't get the exact output. …

Member Avatar for asad_34
0
4K
Member Avatar for TimTheCoder

I have used Magick.NET to detect all the edges using Canny Edge Detection which basically converts an image to a binary version where the edges are in white and the rest of the image black However I have failed in using the library HoughLine method to detect rectangles or squares …

Member Avatar for rproffitt
0
233
Member Avatar for borobhaisab

Hi, Seem to be having problem with the password_hash() as it keeps changing the hash value of the same password. Why ? When each time I refresh the page, the $password_hashed value changes! Why ? The $password is still the same who's value is: '123'. And password_verify($password,$db_password) always echoes '1' …

Member Avatar for Biiim
0
224
Member Avatar for sheeview

im trying to get PHP operate well with javascript. I have looked on internet and put all the solution inside at once but none work. I want to create a cross-site AJAX request but i cant seem to be able to have session_start() stick. I have this PHP code on …

Member Avatar for Stelian_1
1
270
Member Avatar for sinil.jacob

Looking for a web application development company for an enterprise-based web app project. Can anyone suggest me an experienced web app development organization?

Member Avatar for Alenk
1
200
Member Avatar for Austin_7

Below is the code I have, and the output is below that. It all seems right, but I don't want it to print out the 0's if they appear in the output. How do I do that? #include <iostream> #include <iomanip> using namespace std; int main() { double moneyOwed = …

Programming c++
Member Avatar for TradeLabelSoft
0
3K
Member Avatar for Brian_37

Hello, I have run into an issue where my output for shipping charge needs to be Real Use local named constants not global Also the package weight needs to be times the rate PER pound, is what I have correct? rate1= 1.1 rate2= 2.2 rate3= 3.7 rate4= 3.8 def main(): …

Programming python
Member Avatar for SendGroupSMS
0
2K
Member Avatar for Christopher_45

According to me, some important elements in HTML5 that support media are <video>, <embed>, and <source>. I would like to know something more about it from you guys.

Member Avatar for Dani
0
92
Member Avatar for Saboor880

Hi to All! I have a POS Software which I have developed in Java, NetBeans IDE. I am deploying this software on a variety of Windows Computers / Laptops for 5 years. I have used JFormattedTextFields for double data type in the whole Software. And I have set Format of …

Member Avatar for Стас_1
0
86
Member Avatar for Raviteja_1

Hello All I am want to run a command "Merge -i file1.txt -i file2.txt -o out.txt" using python script. Here Merge is a exe file located in different path and file1, file2 are input to the exe file and out is output file. Can anyone suggest me out to run …

Member Avatar for woooee
0
77
Member Avatar for dot LI

Hi, With PHP 7.3, the following was used to grab content from another website: <?php include 'https://www.some-other-website.com/stuff.php';?> It works in PHP 7.3, but I get a black page in PHP 7.4 or higher. Any help would be appreciated. Thanks, Jim

Member Avatar for Dani
0
71
Member Avatar for dloj333

I have a client that have members sign, they get charged, but can't get in unless they are added manually. Any ideas? they are using Chrome on Windows OS.

Member Avatar for Dani
0
46
Member Avatar for Stelian_1

I'm not a php expert but I wonder if there is a way to secure the tunnel with https and if can somehow use some sort of certificate to the session from the class when it outputs the userdata into session and read it as an input by the class? …

Member Avatar for Dani
0
43
Member Avatar for dhoch1488

I am trying to print out photos from an old Windows98 computer (Dell Inspiron 2400) to a brand new HP8025e Laser printer. Our store has been operating a photo booth on this computer so I don't think I can port it to a newer version of Windows. We had been …

Programming printer windows-98
Member Avatar for Dani
0
45
Member Avatar for borobhaisab

Hello Programmers, We use the fragment in urls for the browser to hone in on a particular secion on our page. http://www.yoursite.com/#heading_number~1 http://www.yoursite.com/#heading_number~2 And so on. Now, we can easily open those particular sections in iFrames of your's or third party site's) that does not have a fragment {#) in …

Member Avatar for Naor
0
159
Member Avatar for adshrest

PHP script that provides a basic web-page asking for a date. That date is then used to get the log file for that date from a directory containing many log files (one for each date). If the log file exists, then it is downloaded; otherwise, the script returns with "No …

Member Avatar for Dani
0
109
Member Avatar for Alisha_8

I have been doing web development with PHP for the last few years, and like a lot of people, I have a strong dislike for PHP. I also have done lots of Java development, but never web development. Having a good knowledge of Java, I decided I would try web …

Member Avatar for jwenting
0
99

The End.