-
Replied To a Post in Find the path of an embedded resource file
Do you mean inclusion files? Like `System.Linq`, `System.IO` and such? They're located in C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\CommonExtensions\Microsoft Microsoft Visual Studio 12.0, on Windows 7 x64, you can make … -
Replied To a Post in How statement is evaluating ?
There is no failure in computing, only in human thinking, if you run the PHP code you receive an 8. That means every other way of thinking is wrong, except … -
Gave Reputation to diafol in How statement is evaluating ?
This is the code syntax tree from http://phpfiddle.org/ array( 0: Expr_Assign( var: Expr_Variable( name: x ) expr: Scalar_LNumber( value: 1 ) ) 1: Stmt_Echo( exprs: array( 0: Expr_Plus( left: Expr_Plus( … -
Replied To a Post in How statement is evaluating ?
> Answer is 8 not 6 Yea, I found this answer later (after I posted the post) and while I was editing post, DaniWeb stopped responding for like next 30 … -
Marked Solved Status for How to execute server-side scripts from client-side, safely?
Recently I got interested into dynamic execution of scripts. That is, user clicks the button and the JavaScript part (or any other library attached to it) will send a request … -
Replied To a Post in How to execute server-side scripts from client-side, safely?
> I think you're missing the point I'm making, so I'll give an example. The security of your app will be down to PHP, not JS. Well, the second sentence … -
Replied To a Post in How to execute server-side scripts from client-side, safely?
> you should let server-side sessions ensure that this critical action can only be completed by a logged in user who has sufficient rights. How would I do that? I … -
Began Watching How statement is evaluating ?
$x=1; echo $x + $x++ + $x++ + $x; -
Replied To a Post in How statement is evaluating ?
`Compiler Mode - Engaged` $x = 1; int x = 1; echo $x + $x++ + $x++ + $x; print x + x++ + x++ + x; int temp[n][] = … -
Edited How to execute server-side scripts from client-side, safely?
Recently I got interested into dynamic execution of scripts. That is, user clicks the button and the JavaScript part (or any other library attached to it) will send a request … -
Created How to execute server-side scripts from client-side, safely?
Recently I got interested into dynamic execution of scripts. That is, user clicks the button and the JavaScript part (or any other library attached to it) will send a request … -
Began Watching How to execute server-side scripts from client-side, safely?
Recently I got interested into dynamic execution of scripts. That is, user clicks the button and the JavaScript part (or any other library attached to it) will send a request … -
Began Watching Reboot, Launch Elevated & Unattended
I am looking for a way to reboot the system and launch the program with elevated permission without user interaction after the first time the program is launched. The program … -
Replied To a Post in Reboot, Launch Elevated & Unattended
This sounds like you're trying to create a virus and boot it without permission, how good that user firstly needs to agree (and be admin) on making it bootable and … -
Began Watching Internal extension directory
I am creating an internal extension directory using html. How do I connect html to mysql database so as to be able to retrieve the extension number of the person … -
Replied To a Post in Internal extension directory
You cannot use HTML to connect to MySQL, the closest you can get is the PHP (Hypertext Preprocessor). I assume you're running Windows. You would need Apache server for this. … -
Replied To a Post in Update query not working
> secondly if(isset($_POST["update"])) is listed the name of the button in the form have you noticed on the submit button <input type="submit" class="btn" value="update" name="update" /> Pardon me, I haven't … -
Gave Reputation to Abdullahi_1 in PLEASE I NEED HELP ON HOW TO CONVERT THIS C# CODE BELOW TO A VISUAL BASIC
private void Form1_Closed(object sender, System.EventArgs e) { // Create a PDF document object PDFDocument doc = new PDFDocument(); // Creates a PDF page PDFPage page = new PDFPage(this.Width, this.Heigh,PDFMeasurementUnit.Points); page.MeasurementUnit … -
Began Watching Update query not working
Hello, I am trying to update my record but nothing is happening please help me out update.php <?php require_once("connection.php"); if(isset($_POST["update"])) { $uid = $_POST["uid"]; $user_name = $_POST["uname"]; $f_name = $_POST["fname"]; … -
Replied To a Post in Update query not working
Couple things to point out, not trying to be meanie, just, I looked at your code. First of, your form: <form method="POST" action="includes/update_profile.php"> Redirects you to `update_profile.php`, it's not `update.php` … -
Replied To a Post in win7 - how can i disable a program been executed automatic?
Dear Sir J.J. also known as cambalinho, Wanted to change `autorun.inf` file on an USB that has been delivered to him by his ISP for WiFi range extension, and to … -
Replied To a Post in win7 - how can i disable a program been executed automatic?
It's kind of hard to troubleshoot it from distance. Would you mind installing [TeamViewer](http://en.wikipedia.org/wiki/TeamViewer) and send me data through private message? In this manner I would able to see directly … -
Replied To a Post in win7 - how can i disable a program been executed automatic?
> 'access denied' Are you sure you ran `cmd` as administrator? Do you have physical access to the pendrive? If so, could you move to the computer it is attached … -
Replied To a Post in win7 - how can i disable a program been executed automatic?
...once again, you would need to know the letter. Run `cmd` as administrator. Type inside: X: cd / echo > autorun.inf echo FIRST LINE OF THE FILE > autorun.inf echo … -
Replied To a Post in win7 - how can i disable a program been executed automatic?
> instead a letter can i use a program name or pen 'ID'? I wouldn't know how this could be achieveable by `cmd`. Which "program name" do you mean exactly? … -
Began Watching jQuery - Message Not Disappearing Upon Text Entry
Hello. I am working on a form with multiple text-entry boxes and I am using jQuery to give messages to the User for each field. So far every field works … -
Replied To a Post in jQuery - Message Not Disappearing Upon Text Entry
Just a sugesstion, couldn't you just select your `<input>`'s by Id, and then say that if it's empty, produce a message? For example, HTML being: <input id="byName" value="" name="name" placeholder="Name" … -
Marked Solved Status for [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Began Watching win7 - how can i disable a program been executed automatic?
i have 1 pen drive, that is my network. how can i disable, these pen(but not all pens) or program been automatic executed? (the windows connect to network automatic, so … -
Replied To a Post in win7 - how can i disable a program been executed automatic?
I'd like to crash the autorun function, so it will execute only when you access it to through software or Windows Explorer so that nothing will start automatically. Open command … -
Began Watching How easy would it be for others to copy a website idea?
Hi guys, I have an idea for a website that is original, I've not seen anything that does exactly what I intend to do. I don't think it's amazingly groundbreaking … -
Replied To a Post in How easy would it be for others to copy a website idea?
It would depend on project itself. If you would release your project and keep making it better, then no other company would be able to be better at it. The … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
Glad to be helpful :) -
Edited [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Edited [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Edited [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Edited [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Created [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Began Watching [Bug] PHP tags out of code formatting.
The code beneath, is one chunk of code (after "Three."), both `<?php` and `?>` are parts excluded from parsing. 1. One 2. Two. 3. Three. <?php $images = glob("*.png"); $folderRoot … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
Okay, this is my final answer, if this can't solve your issue, I can't really help you: 1. First off, be entirely sure, your Linux installation allows both your folder … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
Oops, made a typo, sorry, try this one: $fileSelf = pathinfo(__FILE__); $folderRoot = $fileSelf["dirname"]; $images = glob($folderRoot . "*.jpg"); foreach($images as $linkto) { $imageSelf = pathinfo($linkto); $suffixToAdd = $imageSelf["filename"] . … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
This script was actually ready-thing, you hadn't replace anything. > Could this work? If not, could you repeat those 5 questions again in this case? I meant, run this script, … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
> which are place holders that I need to add actual folder names to. I don't understand, sorry. May you please explain? -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
Hmmmm... $fileSelf = pathinfo(__FILE__); $folderRoot = $fileSelf["dirname"] $images = glob($folderRoot . "*.jpg"); foreach($images as $linkto) { $imageSelf = pathinfo($linkto); $suffixToAdd = $imageSelf["filename"] . $imageSelf["extension"]; echo "<a href=" . $folderRoot . … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
Sorry, I don't, understand. 1. What is absolute (full) address (browser) path to that one image? 2. What is absolute (full) address (browser) path to folder of image? 3. What … -
Replied To a Post in Access for website visitor to a Linux directory that has images in it
Yes, try this, if you configure file correctly (that is, modifying paths and names), it should be able to see all the files and list their links and by clicking … -
Began Watching windows 8.1 network access limited problem
Hi, 2 days ago I start using windows 8.1, and the first thing that my network access is limited. at home i use a personal wirelss access point, and it … -
Replied To a Post in windows 8.1 network access limited problem
Answer may be as ridiculous as disabling and enabling your wireless card by **Fn** button on your keyboard. In case that wouldn't work. You can still check in the router, … -
Began Watching Beginner need help
# Im a beginer in programing language, i just started programing using turbo c++ , however every time i download a c++ software from net it turns out to viral … -
Replied To a Post in Beginner need help
[Maybe this?](http://sourceforge.net/projects/turbocforwindows-9/) It automatically installs DoSBox and TurboC++ for you, and all setting are automatically made for you, so you just install it, start it and you're good to go.
The End.